I am downloading files through IFRAME method described here:
http://encosia.com/2007/02/23/ajax-file-downloads-and-iframes/
And am showing progress in a div and hiding this div on load completion:
$(objIframe).load(function() {
$("#spinner").hide();
});
The trouble is, this callback function is never called in Internet Explorer yet it works fine in FireFox. I have added random values to the query request string to avoid caching. Why is the callback not being called?