• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle 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

image

PLAY BUTTON

image

PLAY BUTTON

image

Progress

1/5

Click to flip

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')