I'm using the following for a long-polling request...
$.getJSON(url, function(data) {
...
});
The request won't finish until either 30 seconds have passed or there is information to send (long-polling).
The problem is that Firefox is the only browser that will display "Waiting for URL..." at the bottom. Is there any way to prevent this?