There are various selectors in jQuery but the most popular are:
1. ID Selector - Selects the element with the id using the '#' keyword as $("#username")
2. Class Selector - Selects the element with the class name using the '.' keyword as $(".students")
3. Element Selector - Selects the element using its type. For example if the element is a paragraph
, then it goes like $("p")