DOM (Document Object Model) Basics
The DOM API is usd to access, traverse, and manipulate ____ and ____ documents.
HTML XML
_____ and DOM are usually seen as a single entity.
JavaScript
What is a method?
a function stored under an object
What is a property?
a variable stored under an object
Why can all functions be referred to as a method?
because all functions are stored under the global object "window"
The root node of the DOM tree is the _____node.
document
The ____ object serves as the global object.
window
Which object is responsible for executing all of your JavaScript code within it?
window
What are the 3 most important DOM nodes?
'Element' 'Text' and 'Document'
A hierarchy is made up of ____.
nodes
Element attributes are DOM ____ too.
nodes
All objects have ____ and methods.
properties