On 2010-04-19 10:15, Ran Berenfeld wrote:
the code looked like this :var itemsArray = $$("a.resultsSummary"); for (var i=0;i< itemsArray.length;i++) { var item = itemsArray[i]; alert(item); ... }
Just an idea for making it more "prototypish":
$$('a.resultsSummary').each(function(item)
{
alert(item);
...
});
Regards,
Sune
<<attachment: sune.vcf>>
smime.p7s
Description: S/MIME Cryptographic Signature
