I need to find the input type for radio buttons, text, and selects. Its easy to find the input type of anything with since $(this).at
$(this).at
All types of input box and select box getting together by jQuery find :
$('#myForm').find('select,input').each(function(i,box){ alert($(box).attr('name')); }