Kitten            Welcome to Read: 06



Read: 06 - “JS Object Literals; The DOM”

In this Read: 06, I will have those three topics:

Ther is two way to create an object.


Document Object Model
The Document Object Model (DOM) specifies how browsers should create a model of an HTML page and how JavaScript can access and update the contents of a web page while it is in the browser window.

The DOM is neither part of HTML, nor part of JavaScript; it is a separate set of rules.

It is implemented by all major browser makers, and covers two primary areas:

THE DOM TREE IS A MODEL OF A WEB PAGE
As a browser loads a web page, it creates a model of that page. The model is called a DOM tree, and it is stored in the browsers’ memory. It consists of four main types of nodes.
Each node is an object with methods and properties. Scripts access and update this DOM tree (not the source HTML file). Any changes made to the DOM tree are reflected in the browser.

WORKING WITH THE DOM TREE

NODELISTS: DOM QUERIES THAT RETURN MORE THAN ONE ELEMENT
When a DOM method can return more than one element, it returns a Nodelist (even if it only finds one matching element).
Here you can see four different DOM queries that all return a Nodelist. For each query, you can see the elements and their index numbers in the Nodelist that is returned.

LOOPING THROUGH A NODELIST

TRAVERSING THE DOM
When you have an element node, you can select another element in relation to it using these five properties. This is known as traversing the DOM.

WHITESPACE NODES
Traversing the DOM can be difficult because some browsers add a text node whenever they come across whitespace between elements.




Read Title ToGo
Read: 01 Introductory HTML and JavaScript
Read: 02 HTML Text, CSS Introduction, and Basic JavaScript Instructions
Read: 03 HTML Lists, CSS Boxes, JS Control Flow
Read: 04 HTML Links, CSS Layout, JS Functions
Read: 05 HTML Images; CSS Color & Text
Read: 06 JS Object Literals; The DOM
Read: 07 HTML Tables; JS Constructor Functions
Read: 08 More CSS Layout
Read: 09 Forms and Events
Read: 10 JS Debugging
Read: 11 Assorted Topics
Read: 12 Docs for the HTML canvas Element & Chart.js
Read: 13 Local Storage
Read: 14a CSS Transforms, Transitions, and Animations
Read: 14b What Google Learned About Teams



Number References
[] Duckett, J. (2014). JavaScript & JQuery: Interactive front-end web development. In JavaScript & JQuery: Interactive Front-End Web Development . John Wiley & Sons.