Answers for "open window on other page"

5

javascript open url

window.location.href = "http://example.com/";
Posted by: Guest on May-21-2020
1

javascript open new window with html content

var newWin = open('url','windowName','height=300,width=300');
newWin.document.write('html to write...');
Posted by: Guest on October-19-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language