eimkasp

JavaScript Email Validator

Dec 18th, 2011
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.95 KB | None | 0 0
  1.     <html>
  2.     <head><title>mano facebook</title>
  3.     <script language="JavaScript">
  4.     function nuskaitymas()
  5.       {
  6.             a=document.getElementById('email')
  7.             k=a.value
  8.             //document.write(k)
  9.     alert(k);
  10.             }
  11.        
  12.     function emailValidation(elem, helperMsg) {
  13.         var emailExp = /^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/;
  14.         if(elem.value.match(emailExp)){
  15.                 return true;
  16.                 }
  17.                 else{
  18.                 alert(helperMsg);
  19.                 elem.focus();
  20.                 return false;
  21.                 }
  22.     }
  23.     </script>
  24.     </head>
  25.     <body>
  26.     <form>
  27.     <input type="text" id="email">
  28.     <input type="button"
  29.     onclick= "emailValidation(document.getElementById('email'), 'Not valid email')"
  30.     value='Check Field' />
  31.    
  32.     <input type="text" id='asmens_kodas'>
  33.     <input type="button"
  34.     onclick= "emailValidation(document.getElementById('email'), 'Not valid email')"
  35.     value='Check Field' />
  36.            
  37.            
  38.     </form>
  39.     </body>
  40.     </html>
Advertisement
Add Comment
Please, Sign In to add comment