Last active
December 10, 2015 01:38
-
-
Save i11v/4359945 to your computer and use it in GitHub Desktop.
This function extends jQuery by serializeObject method. Argument — form data, returns object.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;(function ($) { | |
$.fn.serializeObject = function () { | |
var obj = {}, | |
arr = this.serializeArray(); | |
$.each(arr, function () { | |
if (typeof obj[this.name] !== "undefined") { | |
if (!obj[this.name].push) { | |
obj[this.name] = [obj[this.name]]; | |
} | |
obj[this.name].push(this.value || ""); | |
} else { | |
obj[this.name] = this.value || ""; | |
} | |
}); | |
return obj; | |
}; | |
}(jQuery || {})); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment