up vote 52 down vote favorite
36
share [g+] share [fb]

We are using jQuery thickbox to dynamically display an iframe when someone clicks on a picture. In this iframe, we are using galleria a javascript library to display multiple pictures.

The problem seems to be that $(document).ready in the iframe seems to be fired too soon and the iframe content isn't even loaded yet, so galleria code is not applied properly on the DOM elements. $(document).ready seems to use the iframe parent ready state to decide if the iframe is ready.

If we extract the function called by document ready in a separate function and call it after a timeout of 100 ms. It works, but we can't take the chance in production with a slow computer.

$(document).ready(function() { setTimeout(ApplyGalleria, 100); });

My question: which jQuery event should we bind to to be able to execute our code when the dynamic iframe is ready and not just it's a parent?

link|improve this question

74% accept rate
And you confirm that galleria works when you load it directly instead of through an iframe, correct? – Jason Kealey Oct 15 '08 at 15:10
Yes, galleria works perfectly when we use it directly in a normal page. – EtienneT Oct 15 '08 at 15:11
feedback

protected by Jeff Atwood Jun 7 '10 at 21:51

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

5 Answers

up vote 108 down vote accepted

I answered a similar question (see Javascript callback when IFRAME is finished loading?). You can obtain control over the iframe load event with the following code:

function callIframe(url, callback) {
    $(document.body).append('<IFRAME id="myId" ...>');
    $('iframe#myId').attr('src', url);

    $('iframe#myId').load(function() 
    {
        callback(this);
    });
}

In dealing with iframes I found good enough to use load event instead of document ready event.

link|improve this answer
10  
Shouldn't you set the load event prior to calling the attr('src')? – Shay Erlichmen Dec 25 '10 at 19:30
4  
No, it does not matter. Load event will not fire until the next event loop at minimum. – Barum Rho Jun 24 '11 at 16:14
1  
the load event will not work for iframes that are used for download. like <iframe src="my.pdf"/> – Mike Starov Nov 3 '11 at 18:44
1  
I really don't get this, please explain. How can this be a dynamically inserted frame if you are manually inserting it in the function? – RGBK Dec 10 '11 at 21:02
"Dynamically inserted" because the iframe tag is inserted in the DOM by javascript on the client. So the iframe can exixts or not on the page, based on condition or event that happens on the client. – Pier Luigi Dec 12 '11 at 6:26
show 2 more comments
feedback

In IFrames I usually solve this problem by putting a small script to the very end of the block:

<body>
The content of your IFrame
<script type="text/javascript">
//<![CDATA[
   fireOnReadyEvent();
   parent.IFrameLoaded();
//]]>
</script>
</body>

This work most of the time for me. Sometimes the simplest and most naive solution is the most appropriate.

link|improve this answer
4  
this will not work on a cross-domain location – vsync Nov 23 '09 at 13:42
1  
+1 This solution works great for me! One great addition is that you can reach up to the parent to grab a copy of jQuery and use parent.$(document).ready(function(){ parent.IFrameLoaded( ); }); to initialize the iframe. – David Murdoch Jan 21 '11 at 13:50
feedback

Using jQuery 1.3.2 the following worked for me:

$('iframe').ready(function() {
  $('body', $('iframe').contents()).html('Hello World!');
});

REVISION:! Actually the above code sometimes looks like it works in Firefox, never looks like it works in Opera.

Instead I implemented a polling solution for my purposes. Simplified down it looks like this:

$(function() {
  function manipIframe() {
    el = $('body', $('iframe').contents());
    if (el.length != 1) {
      setTimeout(manipIframe, 100);
      return;
    }
    el.html('Hello World!');
  }
  manipIframe();
});

This doesn't require code in the called iframe pages. All code resides and executes from the parent frame/window.

link|improve this answer
What's is the movePreview fucntion referred to in setTimeout()? – cam8001 Nov 26 '09 at 3:59
@cam8001: It was a typo - has now been fixed. – Már Örlygsson Mar 28 '11 at 12:10
feedback

Found the solution to the problem.

When you click on a thickbox link that open a iframe, it insert an iframe with an id of TB_iframeContent.

Instead of relying on the $(document).ready event in the iframe code, I just have to bind to the load event of the iframe in the parent document:

$('#TB_iframeContent', top.document).load(ApplyGalleria);

This code is in the iframe but binds to an event of a control in the parent document. It works in FireFox and IE.

link|improve this answer
4  
Found the solution? Looks like Pier had already posted it. Whether you found it on your own or not, etiquette would be to accept his answer, thus rewarding the time he spent answering you. – Sky Sanders Apr 4 '10 at 8:39
feedback

Try this,

<iframe id="testframe" src="about:blank" onload="if (testframe.location.href != 'about:blank') testframe_loaded()"></iframe>

All you need to do then is create the JavaScript function testframe_loaded().

link|improve this answer
Problem with load is that it fires when all images and subframes have loaded. A jQuery like ready event would be more useful. – Tom Dec 14 '11 at 12:54
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.