JamesRadford
JamesRadford

Reputation: 1

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,

Upvotes: 0

Views: 976

Answers (1)

Fosco
Fosco

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

Related Questions