Skip to content

Instantly share code, notes, and snippets.

@mcraz
Created December 9, 2013 16:11
Show Gist options
  • Save mcraz/7874827 to your computer and use it in GitHub Desktop.
Save mcraz/7874827 to your computer and use it in GitHub Desktop.
Open a popup & write something
var newWindow = window.open("","Test","width=300,height=300,scrollbars=1,resizable=1")
newWindow.document.open()
newWindow.document.write(responseText)
newWindow.document.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment