Science, asked by sahilmaske769, 1 year ago

What are the basic selectors in jQuery?

Answers

Answered by Kanagasabapathy
0
Syntax Description Example
$("*") Selects all elements Try it
$(this) Selects the current HTML element Try it
$("p.intro") Selects all <p> elements with class="intro" Try it
$("p:first") Selects the first <p> element Try it
Similar questions