I\'m using jsonp to do cross-domain comet requests, and the \"loading\" status is really annoying.
Is there any way to suppress this with javascript?
For tho
If you begin your first request after the page has finished loading, you should be able to avoid the loading indicator.
$(function () { setTimeout(function () { $.jsonp(...) }, 1000); });