Skip to content

Instantly share code, notes, and snippets.

@QuestionDevelopment
Created August 23, 2013 20:01
Show Gist options
  • Save QuestionDevelopment/6323401 to your computer and use it in GitHub Desktop.
Save QuestionDevelopment/6323401 to your computer and use it in GitHub Desktop.
function IsEmpty(aTextField) {
if ((aTextField.value.length==0) ||
(aTextField.value==null)) {
return true;
}
else { return false; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment