Skip to main content

Discuss the selectors and their use in jQuery

J Query selectors allow you to select and manipulate HTML elements. All selectors in J Query start with the dollar sign and parentheses: $().

The element selector

The J Query element selector selects elements based on the element name. - $("p")







The #id selector

#id selector uses the id attribute of an HTML tag to find the specific element. - $("test")









The .class selector

.class selector finds elements with a specific class. - $(".test")








More Examples of J Query Selectors


Comments