Skip to content

Instantly share code, notes, and snippets.

@libo1106
Created July 25, 2012 02:50
Show Gist options
  • Save libo1106/3174103 to your computer and use it in GitHub Desktop.
Save libo1106/3174103 to your computer and use it in GitHub Desktop.
check iframe is onloaded
var iframe = document.createElement("iframe");
iframe.src = "http://www.planabc.net";
if (iframe.attachEvent){
iframe.attachEvent("onload", function(){
alert("Local iframe is now loaded.");
});
} else {
iframe.onload = function(){
alert("Local iframe is now loaded.");
};
}
document.body.appendChild(iframe);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment