Skip to content

Instantly share code, notes, and snippets.

@shawnsandy
Last active February 11, 2017 19:58
Show Gist options
  • Save shawnsandy/7b4657e022180098a62cbc466db973c6 to your computer and use it in GitHub Desktop.
Save shawnsandy/7b4657e022180098a62cbc466db973c6 to your computer and use it in GitHub Desktop.
Check form for fields/elements with required class.
$("form").each(function() {
var inputs = $(this).find(".required");
$(inputs).each(function(){
var val = $(this).val();
console.log(val);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment