I am looking at javascript code and it has this in function:
$$('.CssClass').each(function(x) { .... } )
I understand that the goal is to apply an anonymous function to each element with the CssClass class, but I cannot work, which means $$ ... and cannot google for $$!
Update : thanks for the tips. Javascript comes from a library of similar iPhone: jPint , which includes prototypejs and defines $$ as:
function $$() { return Selector.findChildElements(document, $A(arguments)); }
source share