A couple questions:
Is a regular javascript loop (to loop through a series of elements) faster/more efficient than using jQuery
each()
??If so, what is the best way to write the following code as a regular javascript loop?
$('div').each(function(){ //... })