This question already has an answer here:
- How to apply CSS to iframe? 26 answers
I am trying to apply a CSS style for content inside the iframe, please check this link http://jsfiddle.net/pPqGe/
jQuery:
$(document).ready(function() {
$('iframe').contents().find('h1').css('color','red');
});
HTML:
<iframe src="mysite" width="100%" height="100%" id="myframe"></iframe>
For iframe source I have used a live website.