What are selectors in jQuery and how many types of selectors are there?



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

Post New Answer

More jQuery Interview Questions

Explain the advantages of jquery?

0 Answers  


How do you select all elements with the class of “selected” in jquery?

0 Answers  


How can you get the type of arguments passed to a function?

0 Answers  


List the advantage of using minimized version of jquery?

0 Answers  


How to run an event handler only once in jQuery?

0 Answers  


How do you select element by ID in jQuery?

1 Answers  


Why we use chaining in jquery?

0 Answers  


List the advantages of jquery?

0 Answers  


How do you stop the currently-running animation, remove all queued animations, and complete all animations for the matched elements?

1 Answers  


How to check data type of any variable in jquery? : jquery mobile

0 Answers  


Explain the difference between javascript and jquery? : jquery mobile

0 Answers  


How do you check or uncheck a checkbox input or radio button?

0 Answers  


Categories