Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this iframe I create with js, this is the code I have so far:

<script>
function loadIframe(url) {
    ifr = document.createElement("IFRAME");
    ifr.setAttribute("src", url);
    ifr.style.width = "800px";
    ifr.style.height = "600px";
    document.body.appendChild(ifr);
    ifr.onload = ready();
} 

function ready() { alert("ready") };

window.onload = function () {
    loadIframe("http://www.wallpaperpimper.com/wallpaper/Landscape/Ocean/Big-wave-1-S79KZQKBWP-1600x1200.jpg");
}
</script>

The iframe gets created but the ready() funcion fires before the iframe loads the content, what I basically wants to do is:

<iframe onload="ready()" src="http://www.wallpaperpimper.com/wallpaper/Landscape/Ocean/Big-wave-1-S79KZQKBWP-1600x1200.jpg"></iframe>

That works fine, the ready() function fires once the iframe content is loaded, but I want to do it all from js.

I can't use onload inside the body on the pages loaded into the iframe because I don't own them.

How should I set the onload event?

share|improve this question
Why are you iframing an image anyway? Why not use an <img>? Then you won't have any issues with onload at all. – Matthew Scharley May 13 '11 at 5:06
@Matthew Scharley: I am using that image because its big in size so I can know for sure the ready() function is firing before the content loads, which is what I dont want it to do. I want it to fires once the content is loaded. – onceras May 13 '11 at 5:10

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.