jquery ajax: closes #3249. Slight modification on serializeArray, shorter and faster code, and allows a custom form object.
This commit is contained in:
parent
1023cf1d72
commit
5dc7bb7233
|
@ -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 &&
|
||||
|
|
Loading…
Reference in a new issue