jQuery selectors allows to easily identify set of page elements for performing user friendly or required operations .
Class Selector (.) : A class selector is to identify class to search for. An element can have multiple classes. There is no restriction. Operations are applied based on the class that matches.
ID Selector (#) : An element can be selected or indentified based on id. It Matches a single element with the given id attribute.
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
jQuery selectors allows to easily identify set of page elements for performing user friendly or required operations .
Class Selector (.) :
A class selector is to identify class to search for. An element can have multiple classes. There is no restriction. Operations are applied based on the class that matches.
ID Selector (#) :
An element can be selected or indentified based on id. It Matches a single element with the given id attribute.