About 416,000 results
Open links in new tab
  1. Window - Web APIs | MDN

    Sep 18, 2025 · A global variable, window, representing the window in which the script is running, is exposed to JavaScript code. The Window interface is home to a variety of functions, …

  2. JavaScript Window - W3Schools

    Since modern browsers have implemented (almost) the same methods and properties for JavaScript interactivity, it is often referred to, as methods and properties of the BOM. The …

  3. JavaScript Window

    The global object of JavaScript in the web browser is the window object. It means that all variables and functions declared globally with the var keyword become the properties and …

  4. Window Object in JavaScript - GeeksforGeeks

    Jul 23, 2025 · The Window object in JavaScript represents the browser window or frame. It offers properties like innerHeight, innerWidth, and screen, as well as methods like alert (), confirm (), …

  5. Window JavaScript API

    Window is the global object in the browser that represents the browser window for the page. The window object itself is available through the window property and all properties on the Window …

  6. JavaScript Window - Tutorial Republic

    In this tutorial you will learn about the JavaScript window object. The window object represents a window containing a DOM document. A window can be the main window, a frame set or …

  7. JavaScript Window Methods Explained with Examples

    The window object represents the browser window containing the DOM, and comes packed with tons of useful properties and built-in methods to master. In this comprehensive guide, we‘ll …

  8. JavaScript - Window Object - Online Tutorials Library

    In JavaScript, a 'window' object is a global object. It contains the various methods and properties that we can use to access and manipulate the current browser window.

  9. Window Object - W3Schools

    The window object represents an open window in a browser. If a document contain frames (<iframe> tags), the browser creates one window object for the HTML document, and one …

  10. JavaScript Window: Interacting with the Browser Window Object

    Aug 24, 2024 · JavaScript's window object is a powerful tool that serves as the global object in browser environments. It represents the browser window and provides a wide array of …