[jQuery] Re: getJSON parameter - long string

2009-06-26 Thread David Andrews
Hi, There is a byte limit (2048) on the size of a url set in the server configuration (I think specific t IIS but maybe apache too) , if you dont have access to change these you will have to use POST to submit your string. On 26 Jun 2009, at 11:07, saa...@gmail.com wrote: Hi I am

[jQuery] Re: getJSON parameter - long string

2009-06-26 Thread Zbyszek Matuszewski
Maybe you hit the timeout for AJAX in jQuery? Try: $.ajaxSetup({ timeout: 1 }); It will change AJAX timeout to 10 seconds. Or you can try to do this by $.ajax method where you can specify the timeout. On Jun 26, 12:07 pm, saa...@gmail.com saa...@gmail.com wrote: Hi I am trying to

[jQuery] Re: getJSON parameter - long string

2009-06-26 Thread mkmanning
In a GET request the length of the URL is also browser dependent. IE has the shortest (at least as of IE7) at 2,083 characters with no more than 2,048 in the path portion. A non-scientific 2006 test showed Firefox to accept at least 100,000 characters, Safari at 80,000 characters, Opera at