what is the selector in jquey?

Selector is use for the get the element from the DOM. There are different type of selector like 1) Id => $("#id") 2) class => $(".class") 3) element => $("element")

Comments