Skip to content

Instantly share code, notes, and snippets.

@gladiatorAsh
Created June 18, 2015 10:57
Show Gist options
  • Save gladiatorAsh/be57550e38db43ea1078 to your computer and use it in GitHub Desktop.
Save gladiatorAsh/be57550e38db43ea1078 to your computer and use it in GitHub Desktop.
Check Required
function CheckRequired($element) {
if ($element.is('input:text')) {
if (!$element.val()) {
validated = false;
objValidationFailed.push($element[0]);
$element.addClass('error');
}
// else {
//Validation passed
// }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment