@ Jon Ege Ronnenberg <[EMAIL PROTECTED]> : > Hi guys! and girls too !
> I need to handle danish characters which can be found in the iso 8859-1 > specifications but jQuery use encodeURIComponent which always encode to > UTF-8 (doesn't contain the danish characters). On the contrary UTF-8 *does* contain all characters. And using encodeURIComponent() is the only consistentway of passing accentuated data in XHR. What you need to do (if you can do it, that is) is to re-encode your data into ISO-latin, server-side, when it arrives. If you cannot do it, then you might try escape instead of encodeURIComponent, but you'll need to test it everywhere. -- Fil _______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
