HOME
> System software
> Javascript: "Window.open" - All Information
JavaScript: "window.open" - all information
Window.open is a JavaScript command that you can use in many ways. It can open new tabs, new pages or even popup windows. How to use the JavaScript command "window.open" practically, we explain in this article.
How to use the JavaScript command "window.open"
Three parameters are behind the structure of the command:- the parameter "URL"
- the parameter "Name"
- the feature parameters
- _blank: The address will be opened in a new window.
- _self: The address will be loaded in the current window.
- _top: The address replaces all possible framesets.
- _parent: Used in framesets to load the address in the parent frame.
- _name: A custom name is assigned here.