diff options
author | John Resig <jeresig@gmail.com> | 2007-08-20 02:51:57 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2007-08-20 02:51:57 +0000 |
commit | 887c00780df75ab42228285e4571b9052e6fd51a (patch) | |
tree | 63d14cca64f4a626a910725209824a9566984312 /src/jquery/jquery.js | |
parent | 2ef4093cf7f52383dd43bd361864edcda27e5c3c (diff) | |
download | jquery-887c00780df75ab42228285e4571b9052e6fd51a.tar.gz jquery-887c00780df75ab42228285e4571b9052e6fd51a.zip |
Implemented the new .slice() method (bug #1517).
Diffstat (limited to 'src/jquery/jquery.js')
-rw-r--r-- | src/jquery/jquery.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index b7091e26f..ff33034ed 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1160,6 +1160,10 @@ jQuery.fn = jQuery.prototype = { ( this.length ? this[0].innerHTML : null ) : this.empty().append( val ); }, + + slice: function() { + return this.pushStack( Array.prototype.slice.apply( this, arguments ) ); + }, /** * @private |