What Is The DOM And BOM In JavaScript?
Solution 1:
The BOM (Browser Object Model) consists of the objects navigator
, history
, screen
, location
and document
which are children of window
. In the document
node is the DOM (Document Object Model), the document object model, which represents the contents of the page. You can manipulate it using javascript.
Solution 2:
- DOM - Document Object Model
- BOM - Browser Object Model
This article explains relationship between Javascript, DOM and BOM.
Solution 3:
They're just different objects you're dealing with:
- The DOM is the Document Object Model, which deals with the document, the HTML elements themselves, e.g.
document
and all traversal you would do in it, events, etc. - The BOM is the Browser Object Model, which deals with browser components aside from the document, like
history
,location
,navigator
andscreen
(as well as some others that vary by browser).
Solution 4:
DOM means Document Object model..when the webpage is loaded the browser creates a document object model for the page..All the objects are arranged as tree structure...
BOM means Browser Object Model.window object is supported by all browsers it represents the window browser..All global JavaScript objects, functions, and variables automatically become members of the window object.
Solution 5:
You can find more information about Javascript on Mozilla Foundation.
DOM
https://developer.mozilla.org/en-US/docs/DOM/DOM_Reference/Introduction
BOM
Post a Comment for "What Is The DOM And BOM In JavaScript?"