jquery get all input value by class code example
Example 1: get all input values by class jquery
$(".test .text-field").each(function() {
alert($(this).val());
});
Example 2: get all input values by class jquery
$(".test .text-field")
$(".test .text-field").each(function() {
alert($(this).val());
});
$(".test .text-field")