Reputation: 1
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,
Upvotes: 0
Views: 976
Reputation: 38526
Are there any other IFRAMES on the page that need to be viewed?
If not, could you just add some CSS?:
IFRAME { display: none; }
Upvotes: 3