From da51cd0e43d6d61e0d3d6c197cef1e658bad29bc Mon Sep 17 00:00:00 2001 From: Yehuda Katz Date: Wed, 9 Dec 2009 20:57:19 -0800 Subject: Add function values to addClass, removeClass, toggleClass, text, and removeAttr --- src/manipulation.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/manipulation.js') diff --git a/src/manipulation.js b/src/manipulation.js index 930b3d9b9..baab8c6c0 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -32,6 +32,12 @@ if ( !jQuery.support.htmlSerialize ) { jQuery.fn.extend({ text: function( text ) { + if(jQuery.isFunction(text)) { + return this.each(function() { + return jQuery(this).text( text.call(this) ); + }); + } + if ( typeof text !== "object" && text !== undefined ) { return this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) ); } @@ -87,7 +93,7 @@ jQuery.fn.extend({ } }).end(); }, - + append: function() { return this.domManip(arguments, true, function(elem){ if ( this.nodeType === 1 ) { -- cgit v1.2.3