how to use jquery .each to loop through all input controls except those which have a specific class?
I have the current which loops through all and I want to exclude those with @class="static"
$('input[type = "text"]').each(function () {
var value = { QuestionId: $(this).attr('id'), Answer: $(this).val() };
surveyResults.push(value)
});