Felix Geisendörfer wrote:
That isn't so far fetched. There is the array plugin: http://dev.jquery.com/browser/trunk/plugins/arrayIt'd be cool if it was a real array and .push / .sort would work on it
And a push-implementation is missing there but easy to add:
push: function( t ) {
return this.setArray( jQuery.merge( this.get(), t ) );
}
--
Jörn Zaefferer
http://bassistance.de

