jQuery Selector

Select DOM elements with jQuery!

This paragraph lives inside the #selectId div.

This link has the class selectClass.

This paragraph lives inside the form elemenet.



  1. With jQuery, select the div with the id selectId.
    • Hint: $("#id");
  2. With jQuery, select the anchor tag with the class selectClass.
    • Hint: $(".class");
  3. With jQuery, select the form element.
    • Hint: $("element");