- Shuffle
Toggle OnToggle Off
- Alphabetize
Toggle OnToggle Off
- Front First
Toggle OnToggle Off
- Both Sides
Toggle OnToggle Off
Front
How to study your flashcards.
Right/Left arrow keys: Navigate between flashcards.right arrow keyleft arrow key
Up/Down arrow keys: Flip the card between the front and back.down keyup key
H key: Show hint (3rd side).h key
![]()
PLAY BUTTON
![]()
PLAY BUTTON
![]()
5 Cards in this Set
- Front
- Back
|
How would you select an element with an id of "myelement"?
|
$('#myelement')
|
|
How would you select all elements having the class "myclass"?
|
$('.myclass')
|
|
How would you select all paragraphs inside an element having the class "myclass"?
|
$('.myclass p')
|
|
How would you select an unordered list immediately following an item with the id "myid"?
|
$('#myid +ul')
|
|
How would you select the list items inside an unordered list immediately following an item with the id "myid"?
|
$('#myid +ul li')
|