| Page | Title | HTML | JavaScript |
|---|---|---|---|
| 186 | Initial Page | initial-page.html | initial-page.js |
| 195 | Selecting Elements Using ID Attributes | get-element-by-id.html | get-element-by-id.js |
| 200 | Selecting Elements Using Class Attributes | get-elements-by-class-name.html | get-elements-by-class-name.js |
| 201 | Selecting Elements by Tag Name | get-elements-by-tag-name.html | get-elements-by-tag-name.js |
| 202 | Selecting Elements Using CSS Selectors | query-selector.html | query-selector.js |
| 205 | Looping Through a NodeList | node-list.html | node-list.js |
| 210 | Previous & Next Sibling | sibling.html | sibling.js |
| 211 | First & Last Child | child.html | child.js |
| 215 | Accessing & Changing a Text Node | node-value.html | node-value.js |
| 217 | Accessing Text Only | inner-text-and-text-content.html | inner-text-and-text-content.js |
| 221 | Update Text & Markup | inner-html.html | inner-html.js |
| 223 | Adding an Element to the DOM Tree | add-element.html | add-element.js |
| 225 | Removing an Element from the DOM Tree | remove-element.html | remove-element.js |
| 233 | Check for an Attribute and Get Its Values | get-attribute.html | get-attribute.js |
| 234 | Creating Attributes & Changing Their Values | set-attribute.html | set-attribute.js |
| 235 | Removing Attributes | remove-attribute.html | remove-attribute.js |
| 240 | Example | example.html | example.js |