"So I need to write my own JSON serializer or is there something
already available?"

it's not all that involved

var FormValues = {};
$(":input").each(function() {
      FormValues[$(this).attr("name")] = $(this).val();
});

Something along those lines anyways

Reply via email to