hide iframe that is externally provided
I have a iframe that loads into out page that causes a display issue. We've tried CSS changes although it still causes a problem. Is there anyway to hide an iframe using jquery that is loaded externally.
we've tried the document ready but it looks like the external js file that it uses also has the document ready method so when we try on our code to wait for the call to finish (with the document ready) it开发者_运维问答 does work.
thanks,
Are there any other IFRAMES on the page that need to be viewed?
If not, could you just add some CSS?:
IFRAME { display: none; }
精彩评论