Jquery Selectors
* $("*") All elements #id $("#lastname") The element with id="lastname" .class $(".intro") All elements with class="intro" .class,.class $(".intro,.demo") All elements with the class "intro" or "demo" element $("p") All elements el1,el2,el3 $("h1,div,p") All , and elements :first $("p:first") The first element :last $("p:last") The last element :even $("tr:even") All even elements :odd $("tr:odd") All odd elements :first-child $("p:first-child") All elements that are the first child of their parent :first-of-type $("p:first-of-type") All elements that are the first element of their parent :last-child $("p:last-child") All elements that are the last child of their parent :last-of-type $("p:last-of-type") All elements that are the last element of their parent :...