I have a page that contains an iframe
that gets loaded using Javascript:
index.html
instead of making the iframe invisible by using display:none
, you could try to...
... set visibility:hidden
... set position:absolute; top:-600px;
... set opacity:0
or something else that makes jQuery "see" the objects but not the user (and reset the used css-attributes in your myFrame.onload
function).