Serialzies all child elements that have name attributes contained within the Element including text, textarea, select, select-multiple, radio, checkbox and any other misc elements with name attributes
//just return the serialized data
var string = $('#myElement').serializeNamedChildren();
//serialize and send data to url via ajax
var string = $('#myElement').serializeNamedChildren('/some/page');
//serialize and send using more complex ajax object
var string = $('#myElement').serializeNamedChildren({
url : '/some/page',
onResponse : function(r){
alert(r);
}
});
Select several flavors
grape