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
Can you loop through each input element of the form and use the data you get from there? Something like this:
input
$('form input').each(function(i, v) { // Access like this: // $(this).attr('type'); // $(this).attr('value'); // $(this).attr('name'); });