Advertisement
Guest User

Untitled

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