I've seen some similar issues on here regarding the iframe onload, but nothing is working for me.
I have a hidden iframe that I use only for users to download a pdf that is dynamically created on my server. When the user clicks a button, the pdf is created on my server by pointing to a controller/action along with a query string of parameters.
This works great. However, I show a spinner and disable the UI when they press this button ('BlockAndSpin' function). I want to turn the hide the spinner and re-enable the ui when the pdf has been downloaded.
My onload method is never hit when I debug in Chrome and FF. I also tried to add the onload attribute to the iframe itself, and that didn't work either. The file downloads, but the UI stays the same and the onload event doesn't fire.
js
function downloadPOS(id) {
var ifrm = document.getElementById(id)
BlockAndSpin(true);
ifrm.src = "/staticPOS/AddOrDownload" + GetPosQueryString();
ifrm.onload = function () {
BlockAndSpin(false);
}
}
html
<iframe id="dlFrame" onload="BlockAndSpin(false);" style="display: none"></iframe>
Apparently this can't be done. My response is a .pdf being downloaded by the user and not loading anything into the iframe itself, thusly it never fires the event. I'll have to revist how this is done.
iframedoes call theonloadhandler attached by itsonloadattribute. recheck your code for other issues. – Eliran Malka Sep 13 '12 at 18:13