Skip to content

Instantly share code, notes, and snippets.

@diogoca
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save diogoca/9464161 to your computer and use it in GitHub Desktop.

Select an option

Save diogoca/9464161 to your computer and use it in GitHub Desktop.
document.write dentro do iframe
f = document.createElement('iframe');
f.src = "javascript:;";
f.seamless = true;
f.width = '100%';
f.height = 90;
f.frameborder = 0;
f.style.border = 0;
$('body').append(f);
win = f.contentWindow;
win.document.open();
win.document.write('<html></html>');
win.document.close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment