Jquery Selectors

PHOTO EMBED

Wed Jan 19 2022 19:00:45 GMT+0000 (Coordinated Universal Time)

Saved by @shinesheray

$("h1") // element selector
$("#mainHeading") // ID selector
$(".yellow") // class selector
$("*") // selects all HTML elements
$(this) // selects current HTML element
$("button") // selects button element
$("[href]") // selects all link-based elements
content_copyCOPY