jquery find each input code example
Example: each input form jquery
$("form#formID :input").each(function(){
var input = $(this); // This is the jquery object of the input, do what you will
});
$("form#formID :input").each(function(){
var input = $(this); // This is the jquery object of the input, do what you will
});