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 |
What happen if you return false from a jQuery event handler?
What is jquery.holdready() function?
How to load jQuery locally when CDN fails?
How to use transition effects? : jQuery Mobile
Is window.onload is different from document.ready()?
What is the difference between calling stop(true,true) and finish method?
Explain the difference between find and children methods in jquery?
How to use it jquery knockout?
How to work with jQuery parent(), children() and siblings()?
Is jquery a w3c standard? : jquery mobile
What are the methods used to provide effects in jquery?
Need to add jQuery file in both Master and Content page?