Window.Open in Javascript

window.open is a method in JavaScript used to open a new browser window or tab. It can be used to open a specific URL, or a blank page, and it provides various options for customizing the new window or tab. Here’s the basic syntax and some examples:

Syntax

window.open(url, windowName, [windowFeatures]);
  • url (optional): The URL to be loaded in the new window. If not specified, a blank window is opened.
  • windowName (optional): The name of the new window. This can be used as the target for form submissions or hyperlinks. If an existing window with the same name exists, the URL will be loaded in that window.
  • windowFeatures (optional): A comma-separated list of features/parameters for the new window (e.g., width, height, scrollbars).

Examples

  1. Open a new window with a specific URL:- window.open('https://www.example.com');
  2. Open a new window with specific dimensions:- window.open('https://www.example.com', '_blank', 'width=800,height=600');
  3. Open a new window with no toolbars or scrollbars:window.open('https://www.example.com', '_blank', 'toolbar=no, scrollbars=no');
  4. Open a new window and give it a name:window.open('https://www.example.com', 'exampleWindow');
  5. Open a blank window:window.open();

Example Code

Here’s a more complete example where clicking a button opens a new window:

<!DOCTYPE html>
<html>
<head>
  <title>Window Open Example</title>
  <script type="text/javascript">
    function openWindow() {
      window.open('https://www.example.com', '_blank', 'width=800,height=600');
    }
  </script>
</head>
<body>
  <button onclick="openWindow()">Open New Window</button>
</body>
</html>

Parameters for windowFeatures

  • width and height: Specifies the width and height of the new window.
  • left and top: Specifies the position of the new window on the screen.
  • menubar: Shows or hides the menu bar (yes or no).
  • toolbar: Shows or hides the toolbar (yes or no).
  • location: Shows or hides the address bar (yes or no).
  • status: Shows or hides the status bar (yes or no).
  • scrollbars: Enables or disables scrollbars (yes or no).
  • resizable: Allows or prevents resizing of the new window (yes or no).

By using these parameters, you can customize the appearance and behavior of the new window to suit your needs.

Tags

Leave a Reply

Your email address will not be published. Required fields are marked *

About Author

Alex Lorel

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua veniam.

Latest Posts

Categories

Tags

There’s no content to show here yet.