Skip to content

Instantly share code, notes, and snippets.

@viniciusss
Created July 23, 2012 17:17
Show Gist options
  • Save viniciusss/3164814 to your computer and use it in GitHub Desktop.
Save viniciusss/3164814 to your computer and use it in GitHub Desktop.
function validaForm(){
var emptyElement = $(":input:visible[value='']").get(0);
if( undefined != emptyElement ) {
alert("Todos os campos devem ser preenchidos!");
emptyElement.focus();
return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment