hi there,
have these simple code for email validation but I am stuck as I want to predefine gmail emails to give ex discount...
here is the code:
but when i change that code to recognize gmailCode:<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Check Email Address</title> <script language="javascript"> function checkEmail(inputvalue){ var pattern=/^([a-zA-Z0-9_.-])+@([a-zA-Z0-9_.-])+\.([a-zA-Z])+([a-zA-Z])+/; if(pattern.test(inputvalue)){ alert("true"); }else{ alert("false"); } } </script> </head><body> <form name="signupform"> Input your email: <input name="email" type="text" class="inputs" id="email_address" value="any@any.com" size="35" maxlength="255"> <input name="summit" type="submit" value="Check" onClick="checkEmail(document.signupform.email.value)"> </form></body></html>
only gmail accounts are validCode:<script language="javascript"> function checkEmail(inputvalue){ var pattern=/^([a-zA-Z0-9_.-])+@(gmail])+\.([a-zA-Z])+([a-zA-Z])+/; if(pattern.test(inputvalue)){ alert("true"); }else{ alert("false"); } } </script>
any chance to implement @(gmail]) & @([a-zA-Z0-9_.-]) ?![]()


Reply With Quote
Bookmarks