Forum Moderators: open
Ok so I have an annoying problem I'm unsure how to resolve. I'm employing the dynamic script tag technique to achieve cross-domain Ajax calls, and it works just fine. This problem crops up though because I am polling a remote server every five seconds. In Internet Explorer I have no complaints at all. Firefox, however, displays a "waiting for [remote server]..." message every time a call is made. In a polling scenario this becomes annoying and looks unprofessional. I can't have a "waiting for..." message flash in the status bar every five seconds. There are other ways to poll the server, but in my case I actually care about the response as it may occasionally contain a small snippet of JavaScript that I want to execute.
So the question is, how do I execute a cross-domain Ajax call in Firefox that *doesn't* generate a status bar "waiting" message?
did you try and trash the window.status message after you refresh the call to the js?
In Firefox, the developer no longer has control over the window.status message.
So the question is, how do I execute a cross-domain Ajax call in Firefox that *doesn't* generate a status bar "waiting" message?
My guess is that you'd have to create a custom extension that supresses the default action. I can't think of any other way because it isn't a scripting issue, it's a browser implementation issue.
- JS