akwin4565 Junior Member Joined Dec 1, 2013 Messages 134 Reaction score 7 Mar 9, 2014 #1 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 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.
DaQuark Junior Member Joined Jun 4, 2011 Messages 130 Reaction score 43 May 2, 2014 #2 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 ...
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 ...
X x00srch Registered Member Joined Jul 2, 2013 Messages 53 Reaction score 16 May 3, 2014 #3 With jQuery: Code: $(function(){ $('#IFrame-Name').load(function() { $('#Container-Name').show(); $('#IFrame-Name').unbind('load'); }); });
With jQuery: Code: $(function(){ $('#IFrame-Name').load(function() { $('#Container-Name').show(); $('#IFrame-Name').unbind('load'); }); });
akwin4565 Junior Member Joined Dec 1, 2013 Messages 134 Reaction score 7 May 5, 2014 Thread Starter Thread Starter #4 Where do I place the iframe?
I I Make Dollars BANNED Joined May 4, 2014 Messages 175 Reaction score 93 May 5, 2014 #5 give your iframe the id of "IFrame-Name" and use x00srch code. Should work fine.