[jQuery] Re: $.ajax calls in firefox doesn't work

2009-08-26 Thread hosemaria
Wow. It works with GET :) Thanx to all Greetings

[jQuery] Re: $.ajax calls in firefox doesn't work

2009-08-25 Thread Ashley
I think what James suggested is the right way to go: switch to GET. It looks like you're sending no data in your POST. That is a security violation under some server set-ups and might just cause an error under others. Otherwise try at least a dummy marker { data:1 } or something into your POST req

[jQuery] Re: $.ajax calls in firefox doesn't work

2009-08-24 Thread James
Does it work if you change your AJAX submit method type to GET, instead of POST? On Aug 24, 12:58 pm, hosemaria wrote: > Clearing Cookies doesn't work > > I am newbee with analyzing headers responses. This are info taken from > Fiddler debuger (FX responses). If you could help me to find somethi

[jQuery] Re: $.ajax calls in firefox doesn't work

2009-08-24 Thread hosemaria
Clearing Cookies doesn't work I am newbee with analyzing headers responses. This are info taken from Fiddler debuger (FX responses). If you could help me to find something odd I will be grateful. Request Header: POST /manager/www/admin/parking_cfg.php HTTP/1.1 Host: www.somedomain.com User-Agen

[jQuery] Re: $.ajax calls in firefox doesn't work

2009-08-24 Thread James
Maybe there's corrupted header/cookie data being sent with the request that the server doesn't like. Try viewing the request headers with Firebug to see if you see anything odd. Then try clearing your Firefox cookies for that domain to see if that helps. On Aug 24, 5:47 am, hosemaria wrote: > Im

[jQuery] Re: $.ajax calls in firefox doesn't work

2009-08-24 Thread hosemaria
Important note: It works under FX when script is at localhost(developer mashine->wamp server). When I download it on linux server(hosting) the situation is as described above.