Tous les sélecteurs jQuery

$ - $("*") It will select all elements
#id - $("#bs") - Select all elements with the ID of bs
.class - $(".blacksawn") - select element with class ="blackswan"
element - $("p") - select paragraph element
BlackSwan