Skip to content

Instantly share code, notes, and snippets.

@codenamejason
Created July 26, 2017 19:24
Show Gist options
  • Save codenamejason/263313d171f26efda6201bbe68c33dde to your computer and use it in GitHub Desktop.
Save codenamejason/263313d171f26efda6201bbe68c33dde to your computer and use it in GitHub Desktop.
function validateEmail()
{
var emailID = document.myForm.EMail.value;
atpos = emailID.indexOf("@");
dotpos = emailID.lastIndexOf(".");
if (atpos < 1 || ( dotpos - atpos < 2 ))
{
alert("Please enter correct email ID")
document.myForm.EMail.focus() ;
return false;
}
return( true );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment