SyntaxStudy
Sign Up
Home jQuery Exercises jQuery Selectors

jQuery Selectors

Beginner

Complete the jQuery selector syntax.

jQuery's alias for the jQuery function is .

To select all paragraph elements: $("")

To select by id: $("#")

To select by class: $(".")

To run code when the DOM is ready: $(document).(function() { ... })