HTML DOM (Document Object model)
When a Web page is loaded, the browser creates a Document object model for the page.
The HTML DOM model is constructed as a tree of objects.
HTML DOM Tree
With the programmable object model, JavaScript has the ability to create dynamic HTML.
- JavaScript can change all HTML elements in a page
- JavaScript can change all HTML attributes in a page
- JavaScript can change all CSS styles in a page
- JavaScript can react to all the events in the page
Finding HTML elements
Typically, with JavaScript, you need to manipulate HTML elements.
In order to do this, you must first find the element. There are three ways to do this:
- Find HTML elements by ID
- Find HTML elements by tag name
- Find HTML elements by class name
document.getElementById ("Intro"); ID is unique and returns only one value
document.getElementsByTagName ("P"); Returns an array
Document.getelementsbyclassname ("PName"); Returns an array
javascript-selector Dom