jQuery Selectors
BeginnerComplete 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() { ... })