JavaScript DOM Flashcards
1
Q
The HTML DOM
A
is a standard for how to get, change, add, or delete HTML elements.
2
Q
A property
A
is a value that you can get or set (like changing the content of an HTML element).
3
Q
A method
A
is an action you can do (like add or deleting an HTML element).
4
Q
The programming interface
A
is the properties and methods of each object.
5
Q
JavaScript can change all the __________________ in the page
A
HTML attributes & CSS Styles
6
Q
JavaScript can remove
A
existing HTML elements and attributes
7
Q
JavaScript can add
A
new HTML elements and attributes
8
Q
JavaScript can react
A
to all existing HTML events in the page
9
Q
can create new HTML events in the page
A
JavaScript