Hello I'm using jQuery and asp.net.
jQuery using getJSON calls specific handler, lets say MyHandler.ashx

$.getJSON(/MyHandler.ashx?param1=someVal, function(data) {
... some code;
}

In Opera and Explorer this is executed immediately. In FireFox it
takes over 1s before request is executed. Even when I set breakpoint
in my handler it will be hit after 1s... could you tell me why it is
so slow? I got latest version of firefox.

Reply via email to