pav
9/9/2013 - 6:11 PM

select_all_of_a_specific_element

//ignore this line for now
$('document').ready(function(){

//select all the divs on the page
$allOfTheDivs = $("div");

//select all the links on the page
$allOfTheLinks = $("a");

});