[jQuery] Re: [autocomplete] charset

2009-04-15 Thread borutt
Hello, I have watched backend log of requests with fiddler. For input request I get this: GET /PHP/data.php?sid=0.179863580913668q= %C4%8Duklimit=10timestamp=1239779442412 HTTP/1.1 x-requested-with: XMLHttpRequest Accept-Language: sl Referer: http://172.21.6.1/PHP/data.php Accept: */* UA-CPU:

[jQuery] Re: [autocomplete] charset

2009-04-15 Thread Tom Worster
On 4/15/09 3:19 AM, borutt borut.toma...@gmail.com wrote: GET /PHP/data.php?sid=0.179863580913668q=%C4%8Duk %C4%8D is the urlencoding of the utf-8 codepoint for 'č'. My input was čuk but like it's seen from GET params, q param has strange chars. But in QueryString it is ok. i don't know

[jQuery] Re: [autocomplete] charset

2009-04-14 Thread Tom Worster
On 4/14/09 4:36 AM, borutt borut.toma...@gmail.com wrote: I'm having problem with charset on searching value, that is returned in param q. On main page and od page from where script search for data I have charset placed: main script: meta HTTP-EQUIV='Content-Type' Content='text-html;

[jQuery] Re: [autocomplete] charset

2009-04-14 Thread borutt
was the page with the form containing the input element explicitly served with header Content-Type: text/html; charset=Windows-1250? (i check headers sent in WebKit Inspector, i'm sure there are other ways.) I have included in the html header this line: meta HTTP-EQUIV='Content-Type'

[jQuery] Re: [autocomplete] charset

2009-04-14 Thread Tom Worster
On 4/14/09 11:54 AM, borutt borut.toma...@gmail.com wrote: was the page with the form containing the input element explicitly served with header Content-Type: text/html; charset=Windows-1250? (i check headers sent in WebKit Inspector, i'm sure there are other ways.) I have included in