Created
January 6, 2012 21:38
-
-
Save TaoK/1572512 to your computer and use it in GitHub Desktop.
JQuery Serialize Method with Checkbox False Output
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.serialize = function (options) { | |
return $.param(this.serializeArray(options)); | |
}; | |
$.fn.serializeArray = function (options) { | |
var o = $.extend({ | |
checkboxesAsBools: false | |
}, options || {}); | |
var rselectTextarea = /select|textarea/i; | |
var rinput = /text|hidden|password|search/i; | |
return this.map(function () { | |
return this.elements ? $.makeArray(this.elements) : this; | |
}) | |
.filter(function () { | |
return this.name && !this.disabled && | |
(this.checked | |
|| (o.checkboxesAsBools && this.type === 'checkbox') | |
|| rselectTextarea.test(this.nodeName) | |
|| rinput.test(this.type)); | |
}) | |
.map(function (i, elem) { | |
var val = $(this).val(); | |
return val == null ? | |
null : | |
$.isArray(val) ? | |
$.map(val, function (val, i) { | |
return { name: elem.name, value: val }; | |
}) : | |
{ | |
name: elem.name, | |
value: (o.checkboxesAsBools && this.type === 'checkbox') ? //moar ternaries! | |
(this.checked ? 'true' : 'false') : | |
val | |
}; | |
}).get(); | |
}; | |
})(jQuery); |
To easily consume serialization data generated with this "checkboxesAsBools" option, you can use the "jquery.deserialize" plugin: https://github.com/itsadok/jquery.deserialize
Thanks, bur missing type email in rinput.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Modification to jquery
serialize()
method, to optionally support boolean serialization instead of standard http-form-submission-compliant checkbox serialization (name=value on true only).Written by Thomas Danemar at http://tdanemar.wordpress.com/2010/08/24/jquery-serialize-method-and-checkboxes/, copied here for tracking/version control.