Skip to content

Instantly share code, notes, and snippets.

@mapsam
Created April 23, 2014 22:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mapsam/11235014 to your computer and use it in GitHub Desktop.
Save mapsam/11235014 to your computer and use it in GitHub Desktop.
jQuery form serialization
$(document).ready(function(){
$('form').submit(function(event){
var json = JSON.stringify($('form').serializeObject());
$('#result').text(json);
return false;
});
$.fn.serializeObject = function() {
var geojson = {};
geojson['type'] = 'FeatureCollection';
geojson['features'] = [];
var o = {};
var a = this.serializeArray();
$.each(a, function() {
if(o[this.name] !== undefined) {
if(!o[this.name].push) {
o[this.name] = [o[this.name]];
}
o[this.name].push(this.value || '');
} else {
o[this.name] = this.value || '';
}
});
return o;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment