i want to change color of a <p>
that is in an iframe and i tried this:
<script type="text/javascript">
$(document).ready(function() {
$('iframe').contents().find('#red').css('color','red'); });
</script>
its didn't work. what's the problem?
Sorry I'm a beginner.