Skip to content

Instantly share code, notes, and snippets.

@xincici
Created February 10, 2015 08:49
Show Gist options
  • Save xincici/69ce1200ecb41d1a92c2 to your computer and use it in GitHub Desktop.
Save xincici/69ce1200ecb41d1a92c2 to your computer and use it in GitHub Desktop.
open new window and fill new window with content
document.addEventListener('eventName', function(){
var win = window.open();
win.document.write('<h1>test open window</h1>'); // write content in new opened window
win.document.close();
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment