Level 115 Level 117
Level 116

[Quiz] Web pages


15 words 0 ignored

Ready to learn       Ready to review

Ignore words

Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.

All None

Ignore?
Document Object Model (DOM)
A standardized way of referring to the parts of a Web page, using a hierarchical arrangement of the content of an HTML document in a tree-like structure.
DOM tree
The hierarchical arrangement of the content of an HTML document into a tree-like structure, which is used in the Document Object Model.
Object
An HTML element in the DOM>
property
Each piece of information we include in an object is known as a _______. Think of a _______ like a _______ that belongs to some object.
Methods
actions that an object can perform
dot notation
The syntax used to identify a specific item within the DOM, in which you list the objects, properties, and methods leading to it in the DOM tree in order, separated by periods.
Events
Actions defined for a web page; an event can trigger a script.
Event handler
An HTML attribute that specifies a type of user action, enabling you to indicate code to execute in response to a specific event.
Function
store blocks of code that you can later call at any time to avoid repetition in your program
libraries
Collections of reusable script code.
Assignment Operator
Assigns a Variable to a Value (=)
comparison operators
2<1 evalutes to false
Logical Operators
&&, ||, !
variable
A means of storing the result of a JavaScript command.
conditional statement
these statements allow your program to make decisions!