Skip to content

Instantly share code, notes, and snippets.

@fedir
Created May 23, 2013 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fedir/5635765 to your computer and use it in GitHub Desktop.
Save fedir/5635765 to your computer and use it in GitHub Desktop.
Change iframe contents with jQuery
$('iframe').contents().find('html').html(data);
@fedir
Copy link
Author

fedir commented May 23, 2013

// Pure JS version
var d = someFrame.contentWindow.document;
d.write(data);
d.close();

@fedir
Copy link
Author

fedir commented May 23, 2013

// Pure JS alternative solution
var doc = iframe.contentDocument ? iframe.contentDocument : (iframe.contentWindow.document || iframe.document);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment