#3999 closed enhancement (fixed)
toArray()
Reported by: | Robert Katić | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.4 |
Component: | unfiled | Version: | 1.3.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
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 (3)
comment:1 Changed 14 years ago by
comment:2 Changed 14 years ago by
Milestone: | 1.3.2 → 1.3.3 |
---|
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.