Introduction to the DOM
1 Topics
DOM Fundamentals
14 Sub-topics
What is the Document Object Model
DOM as a Programming Interface
How Browsers Build the DOM
Element Nodes vs Text Nodes
Comment Nodes and Document Nodes
DOM and JavaScript Relationship
Browser Developer Tools for DOM
Inspecting DOM in DevTools
DOM Specifications and Standards
Selecting DOM Elements - Basic Methods
1 Topics
Basic Selection Methods
14 Sub-topics
Document Object Introduction
getElementById Return Values
getElementsByClassName Method
Working with HTMLCollection
getElementsByTagName Method
Selecting by Multiple Criteria
Case Sensitivity in Selection
Selecting the Document Root
Selecting Head and Body Elements
Best Practices for Element Selection
Performance of Selection Methods
Selecting DOM Elements - Modern Methods
1 Topics
Query Selectors
15 Sub-topics
querySelector Method Introduction
CSS Selector Syntax Basics
Selecting by ID with querySelector
Selecting by Class with querySelector
NodeList vs HTMLCollection
Converting NodeList to Array
querySelector on Elements
Performance Considerations
Choosing Between Selection Methods