Robert: while I agree with you that the whole .get() thing has always
seemed kind of weird, it's now part of jQuery history and cannot be
easily changed.

If it bugs you, just write your own alias:

    jQuery.fn.toArray = jQuery.fn.get;

...and make sure to always access single element with

  collection[index];

rather than

  collection.get(index);

And you'll never notice the difference.

--
Már Örlygsson
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to