Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. function validateForm()
  2.  
  3. if (document.getElementById("email").value.indexOf("@")==-1){
  4. alert("The Email Address you entered was Invalid");
  5. document.getElementById("email").focus();
  6. return false;
  7. }
  8.  
  9. return true;
  10. }
  11.  
  12.  
  13.  
  14. else if (document.getElementById("email").value.indexOf(".")==-1){
  15. alert("The Email Address you entered was Invalid");
  16. document.getElementById("email").focus();
  17. return false;
  18. }
  19.  
  20. return true;
  21. }
  22.  
  23. else if (document.getElementById("fname").value==""){
  24. alert("Please enter your firstname");
  25. document.getElementById("fname").focus();
  26. return false;
  27. }
  28.  
  29. return true;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement