Iframe onload

akwin4565

Junior Member
Joined
Dec 1, 2013
Messages
134
Reaction score
7
I have a wordpress site in which i have an iframe.I want the iframe to be loaded first.Is there any code for this.Thanks in advance.
 
I don't think it will work unless you place the iframe before the entire content. put the iframe first and then the other html elements ...
 
With jQuery:
Code:
$(function(){
  $('#IFrame-Name').load(function() {
    $('#Container-Name').show();
    $('#IFrame-Name').unbind('load');
  });
});
 
Where do I place the iframe?
 
Back
Top