Reputation: 29
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
Reputation: 416
You can not access by javascript the content of an iframe for security reasons.
Upvotes: 1