Ok, gracias.
Fijate que encontre este ejemplo para each en la documentacion de jquery. Se usa el +:
Cita: jQuery.each(arr, function() {
$("#" + this).text("My id is " + this + ".");
return (this != "four"); // will stop running to skip "five"
});
O sea que funciona. Pero hubo algo en mi primer planteo que no daba resultados. Suerte encontramos formas alternativas. Gracias!