# Document Object Model (DOM) The **Document Object Model** is a *map* of the HTML document. Elements in an HTML document can be accessed, changed, deleted, or added using the DOM. The document object is *globally available* in the browser. It allows to access and manipulate the DOM of the current web page. ## DOM Access ### Selecting Nodes from the DOM `getElementById()` and `querySelector()` return a single element. `getElementsByClassName()`, `getElementsByTagName()`, and `querySelectorAll()` return a collection of elements. ```js Javascript // By Id var node = document.getElementById('id'); // By Tag Name var nodes = document.getElementsByTagName('tag'); // By Class Name var nodes = document.getElementsByClassName('class'); // By CSS Query var node = document.querySelector('css-selector'); var nodes = document.querySelectorAll('css-selector'); ``` ## Manipulating the DOM ### Manipulating a node's attributes It's possible access and change the attributes of a DOM node using the *dot notation*. ```js // Changing the src of an image: var image = document.getElementById('id'); var oldImageSource = image.src; image.src = 'image-url'; //Changing the className of a DOM node: var node = document.getElementById('id'); node.className = 'new-class'; ``` ### Manipulating a node's style It's possible to access and change the styles of a DOM nodes via the **style** property. CSS property names with a `-` must be **camelCased** and number properties must have a unit. ```css body { color: red; background-color: pink; padding-top: 10px; } ``` ```js var pageNode = document.body; pageNode.style.color = 'red'; pageNode.style.backgroundColor = 'pink'; pageNode.style.paddingTop = '10px'; ``` ### Manipulating a node's contents Each DOM node has an `innerHTML` attribute. It contains the HTML of all its children. ```js var pageNode = document.body; console.log(pageNode.innerHTML); // Set innerHTML to replace the contents of the node: pageNode.innerHTML = "