From: Ariel Flesler Date: Wed, 13 Aug 2008 01:44:36 +0000 (+0000) Subject: jquery ajax: closes #3249. Slight modification on serializeArray, shorter and faster... X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=5dc7bb7233efee125922cc63e286c96a73b9326c;p=jquery.git jquery ajax: closes #3249. Slight modification on serializeArray, shorter and faster code, and allows a custom form object. --- diff --git a/src/ajax.js b/src/ajax.js index bda79b5..e454533 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -66,8 +66,7 @@ jQuery.fn.extend({ }, serializeArray: function() { return this.map(function(){ - return jQuery.nodeName(this, "form") ? - jQuery.makeArray(this.elements) : this; + return this.elements ? jQuery.makeArray(this.elements) : this; }) .filter(function(){ return this.name && !this.disabled &&