Answers for "javascript window.open"

5

javascript open url

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

javascript open new window and pass data

// Store the return of the `open` command in a variable
var newWindow = window.open('http://www.mydomain.com');

// Access it using its variable
newWindow.my_childs_special_setting = "Hello World";

//In the child (popup) window, you could access a parent variable like this:
window.opener.my_parents_special_setting
Posted by: Guest on August-16-2020
10

javascript open new window

<a onclick="window.open(document.URL, '_blank', 'location=yes,height=570,width=520,scrollbars=yes,status=yes');">
Open New Window
</a>
Posted by: Guest on February-13-2020
1

open new window javascript

window.open("LINK-HERE");
Posted by: Guest on February-06-2021
0

javascript open window

window.open('page2.html')
Posted by: Guest on July-29-2021

Code answers related to "javascript window.open"

Code answers related to "Javascript"

Browse Popular Code Answers by Language