Add tests for replaceAll(fn) and wrap(fn) -- mark wrapAll and wrapWithin as TODO

This commit is contained in:
Yehuda Katz 2009-07-12 21:08:54 +00:00
parent 7d7a960035
commit 3595102154
2 changed files with 50 additions and 19 deletions

View file

@ -18,6 +18,10 @@ jQuery.fn.extend({
},
wrapAll: function( html ) {
if(jQuery.isFunction(html)) {
return this.each(function() { jQuery(this).wrapAll(html.call(this)); });
}
if ( this[0] ) {
// The elements to wrap the target around
var wrap = jQuery( html, this[0].ownerDocument ).clone();