I need to find and iterate through all child elements that have specific attribute. The following code worked fine in jquery 1.2.6, but throws exception in 1.3.2
<
ithink this is the best way to find and can change something of it
$('.youritem').each(function(){ if($(this).attr('title') == 'add image') $(this).attr('id','imageuploader'); });