[jQuery] Re: Not english characters in the ajax parameters

2007-05-10 Thread Diego A.
Most people will suggest UTF-8 (as I believe they have), but I had a similar problem with the British pound sign (£) and got around it using ISO-8859-1. See my blog post here: http://fyneworks.blogspot.com/2007/04/ajaxxml-problem-with-british-pound-sign.html On May 10, 9:03 am, "Andrew G." <[EMA

[jQuery] Re: Not english characters in the ajax parameters

2007-05-10 Thread Mike Alsup
The problem is that php cannot decode the result of JavaScript encodeURIComponent which JQuery uses. Try this: http://www.php.net/manual/da/function.utf8-decode.php

[jQuery] Re: Not english characters in the ajax parameters

2007-05-10 Thread Andrew G.
Thanks, SeVIR for quick answer. The problem is that php cannot decode the result of JavaScript encodeURIComponent which JQuery uses. The soultion is to create your own function that replace such characters as ?,:, etc. Maybe you know more right way?

[jQuery] Re: Not english characters in the ajax parameters

2007-05-10 Thread SeViR
Andrew G. escribio': Hello, everyone I have a problem with not english characters. I've created with jquery google-like search-suggest and it works perfect with englesh characters. But if I want to search not englasi words, e.g. spanish, search doesn't work correct. You need the same char co