Skip to content

Instantly share code, notes, and snippets.

@glosik
Created February 22, 2017 16:26
Show Gist options
  • Save glosik/54e254c483661b9146ce8ff0a0d56c71 to your computer and use it in GitHub Desktop.
Save glosik/54e254c483661b9146ce8ff0a0d56c71 to your computer and use it in GitHub Desktop.
function findFirstInvalid(form){
for(var key in form){
if(key.indexOf("$") !== 0){
if(form[key].$invalid){
return key;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment