Skip to content Skip to sidebar Skip to footer

Determining When Contents Of An Iframe Has Loaded

NB: I don't believe this is a duplicate of Detect failure to load contents of an iframe or Detecting when Iframe content has loaded (Cross browser) (or any of the similar ones). In

Solution 1:

Use onload event of iframe.Simple

<iframe src="test.pdf" onload="alert('Worked')" ></iframe>

Post a Comment for "Determining When Contents Of An Iframe Has Loaded"