Skip to content

Instantly share code, notes, and snippets.

@marczhermo
Created May 20, 2012 13:26
Show Gist options
  • Select an option

  • Save marczhermo/2758122 to your computer and use it in GitHub Desktop.

Select an option

Save marczhermo/2758122 to your computer and use it in GitHub Desktop.
jQuery: iFrame
$(function() {
var $frame = $('<iframe style="width:200px; height:100px;">');
$('body').html( $frame );
setTimeout( function() {
var doc = $frame[0].contentWindow.document;
var $body = $('body',doc);
console.log($body);
$body.html('<h1>Test2</h1>');
}, 1 );
});​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment