What are selectors in jQuery and how many types of selectors are there?
Answer / chaitanya
To work with an element on the web page, first we need to find them. To find the html element in jQuery we use selectors. There are many types of selectors but basic selectors are:
Name: Selects all elements which match with the given element Name.
#ID: Selects a single element which matches with the given ID
.Class: Selects all elements which match with the given Class.
Universal (*): Selects all elements available in a DOM.
Multiple Elements E, F, G: Selects the combined results of all the specified selectors E, F or G.
Attribute Selector: Select elements based on its attribute value.
| Is This Answer Correct ? | 0 Yes | 0 No |
How to debug jQuery?
How do you select an item using css class or id and get the value by use of jquery.
Tell me is jquery a library for client scripting or server scripting? : jquery mobile
How do you select all elements with the class of “selected” in jquery?
How to stop jqm from auto-enhancing an element? : jquery mobile
Can we use protocol less URL while referencing jQuery from CDNs?
Explain the term method chaining? : jQuery Mobile
What does dollar sign mean in jquery? : jQuery Mobile
What is the difference between prop() and attr() in jquery?
Explain .siblings() method in jquery?
What are some of the ways to provide effects? : jQuery Mobile
Is jQuery replacement of Java Script?