Cannot modify content of iframe, what is wrong?

Please don’t forget the cross-domain policy, otherwise it won’t work.

Live demo: http://jsfiddle.net/oscarj24/wTWjF/

(Just to know, I am not using a 404 page, take a look)

Try this:

$(document).ready(function(){
    $('#ifr').ready(function(){
        $(this).contents().find('body').html('Hey, I have changed the body content yay!');
    });
});​

Leave a Comment