Nikhila K
Nikhila K

Reputation: 29

iframe url content should aplly css styles using jquery

I need to change the iframe url css styles

<iframe id="anil" width="400" height="480" src="https://getbootstrap.com/docs/3.3/examples/starter-template/"></iframe>

Tried it using jquery but couldn't solve it

$("iframe").contents().find("body").css("background-color","yellow");

Upvotes: 0

Views: 87

Answers (1)

You can not access by javascript the content of an iframe for security reasons.

Upvotes: 1

Related Questions