The Browser Object Model
Explore the Browser Object Model and its central window object in JavaScript. Understand how global variables relate to the window object and discover key properties like document, navigator, and location to manage browser functionality beyond HTML content.
We'll cover the following...
We'll cover the following...
In the previous Chapter, you learned that the ECMAScript specification defines the Document Object Model (DOM) to provide access to the model of the HTML page. Beside DOM, the specification defines another model, Browser Object Model (BOM) to expose the web browser functionality that is independent of web page content. In this ...