Modify ↓
Ticket #3999 (closed enhancement: fixed)
toArray()
| Reported by: | rkatic | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.4 |
| Component: | unfiled | Version: | 1.3.1 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
An more explicit way to get an array from a jQuery object.
toArray( [start [,end]] )
jQuery.fn.toArray = Array.prototype.slice;
Also consider to make .get() deprecated in favor of .toArray() and .get(index) deprecated in favor of [index].
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Despite the above implementation gives the ability to use toArray like an slice it is not recommended to expose this like an feature. Documenting it with "toArray()" insted of "toArray( [start [,end]] )" would be enough.
According on the discussion, .get(n) would not be deprecated.