I know I can get the name/value relationship by using
$(#form).serializeArray();
But is there a way to get the whole enchilada, type, name
To get ALL form elements use
$('input, textarea, select').each(function() { // $(this).attr('type'); // $(this).attr('name'); // $(this).val(); });