I have an iframe loading a page, and I would like to manipulate the contents.
For example:
<iframe id="myIframe" src="http://www.google.com"></iframe>
<script>
    $(document).ready(function(){
        $(iframeContents).css('background-color', '#000');
    });
</script>
How can I do this?
 
     
    