Skip to content

Instantly share code, notes, and snippets.

@ixth
Last active August 29, 2015 14:07
Show Gist options
  • Save ixth/e2f373b2d8b979609eda to your computer and use it in GitHub Desktop.
Save ixth/e2f373b2d8b979609eda to your computer and use it in GitHub Desktop.
jquery-serializeJSON.js
(function ($) {
$.fn.serializeJSON = function () {
return $.fn.serializeArray.call(this).reduce(function (result, param) {
result[param.name] = param.value;
return result;
}, {});
};
}(jQuery));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment