Added a new clone function.

1.7/enhancement_8685
John Resig 2006-08-17 05:14:50 +00:00
parent 26580d2675
commit 2a4c269a9b
1 changed files with 6 additions and 0 deletions

View File

@ -557,6 +557,12 @@ jQuery.fn = jQuery.prototype = {
return jQuery.find(t,a);
}), arguments );
},
clone: function(deep) {
return this.pushStack( jQuery.map( this, function(a){
return a.cloneNode( deep != undefined ? deep : true );
}), arguments );
},
/**
* Removes all elements from the set of matched elements that do not