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

Date: 2009jul2 Language: javaScript Level: beginner Keyword: loop, iterate 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'); });