Programming Tips - jQuery: Do custom processing with the result of a jQuery selector

Date: 2009jul2 Language: javaScript Keyword: loop, iterate Level: novice Q. jQuery: Do custom processing with the result of a jQuery selector A. Use each() like this:
$('.myclass').each(function(i, item){ dump('got i=' + i + ' item=' + item + '\n'); });