$( "div" ).click( function() {} );
Each div will have the same handler applied, it doesn't make a new one for every div.
$( "div" ).click( function() {} );
Each div will have the same handler applied, it doesn't make a new one for every div.