I am working on a jQuery plugin that people can include in their own page. The plugin spawns jobs at a service I am operating which is on a different domain.
To breach the domain boundary I am using jQuery's JSONP functionality which works fine for spawning the job. However, I also need to display the "progress" (0 -> 100%). So far my plan was to continuously "poll" for the progress of the job (comet would be nicer, but AFAIK is not possible cross-domain).
The problem is that polling for the progress every second causes Firefox to constantly flash "Loading ..." within the tab's title which I find seriously annoying. (Firefox does that because JSONP works through script tags being attached to the DOM which it then "loads").
So the meat of my question is:
Is it possible to surpress the "Loading ..." tab title messages - or - is there a better way to "stream" the progress updates in a cross-domain fashion?
-- Felix Geisendörfer