Jquery Airport Plugin : How Can I Make It Work With Special Characters?
I'm using the cool jquery airport plugin and trying to make it accept special characters (like accents, '&', etc.). By default it only works with a-z. Has anybody found how to
Solution 1:
There is a chars
array that you can add characters to.
var chars = ['a', 'b', 'c', 'd', 'e', 'f', 'g', ' ', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '-'];
Doing this should be enough.
PS: Sometimes, looking at the source code of a program can be really enlightening. ;-)
Solution 2:
You have to set up the chars array correctly.
var chars = ['a', ..., 'z', ' ', '-', '&', 'ä', 'ö', 'ü'];
Please check this fiddle http://jsfiddle.net/F6Sq4/
The examples uses some german umlauts (äöü), but you might include any other char.
Post a Comment for "Jquery Airport Plugin : How Can I Make It Work With Special Characters?"