• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/2

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

2 Cards in this Set

  • Front
  • Back
  • 3rd side (hint)
How do you reference an object that is apart of an array?
Arrays are created from objects that from the Web Page element.

The objects can be referenced through the array instead of with the element name.
p. 193
Describe aspects of the click/dbl click event(s)
The click/dbl click event is an anchor for an element. When a user clicks a link, the browser handles execution of the onclick event handler automatically, so you don't need to add an onlick even handler to your anchor element.
To override the automatic click event with your own code, you add to the <a> element an onclick event handler that executes custom code.
When using custom code, the return statement has to be used.