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 is the script build up by jQuery?
What are jquery plugins?
Difference between detach and remove? : jQuery Mobile
How to add or remove classes to an element in jquery?
What is the difference between $('div') and $('<div/>') in jQuery?
What is the use of jQuery.data() method?
What is cdn? Explain
How to use jquery.connect?
Explain some of the key concepts of good code organization patterns.
What is difference between .setinterval() and .delay() ?
What is the basic need to start with jQuery?
How to create clone of any object using jQuery?