Last active
August 20, 2018 12:23
-
-
Save siddharthray/704cdc8e913f8ea5f10aa3e3130d5f76 to your computer and use it in GitHub Desktop.
DOM VS BOM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment