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
1 changed files with 1 additions and 2 deletions
|
@ -66,8 +66,7 @@ jQuery.fn.extend({
|
||||||
},
|
},
|
||||||
serializeArray: function() {
|
serializeArray: function() {
|
||||||
return this.map(function(){
|
return this.map(function(){
|
||||||
return jQuery.nodeName(this, "form") ?
|
return this.elements ? jQuery.makeArray(this.elements) : this;
|
||||||
jQuery.makeArray(this.elements) : this;
|
|
||||||
})
|
})
|
||||||
.filter(function(){
|
.filter(function(){
|
||||||
return this.name && !this.disabled &&
|
return this.name && !this.disabled &&
|
||||||
|
|
Loading…
Reference in a new issue