> > I always thought $$ gave me a HTMLCollection rather than a generic > Array...sounds like thats an invalid assumption. >
1) $$ DOES give you a Collection rather than a vanilla Array. But when there are element method names that overlap array method names (like clone) the array method wins. 2) your fiddle constructs an array using .map, returning elements. That array is NOT a collection. You'd need to run it through new Elements(yourArray) to get one.
