Guest User

Untitled

a guest
Jun 22nd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <script type="text/javascript" src="plugins/jquery_min.js"></script>
  2.  
  3. <script type="text/javascript">
  4.  
  5. function emailValidate()
  6.  
  7. {
  8.  
  9.  
  10.  
  11.  
  12.  
  13. email = document.getElementById("email").value;
  14.  
  15.  
  16.  
  17.  
  18.  
  19. $.ajax({
  20.  
  21. url : "modules/emailcheck.php?text_email="+text_email,
  22.  
  23. success : function (data) {
  24.  
  25.  
  26.  
  27. if(data=="1")
  28.  
  29. {
  30.  
  31. document.getElementById("erroremail").innerHTML=
  32.  
  33. "Girdiğiniz mail adresi geçersiz bir mail adresidir..";
  34.  
  35.  
  36.  
  37. }
  38.  
  39. else if(data=="2")
  40.  
  41. {
  42.  
  43. document.getElementById("erroremail").innerHTML=
  44.  
  45. "Girdiğiniz mail adresi geçersiz bir mail adresidir..";
  46.  
  47.  
  48.  
  49. }
  50.  
  51. }
  52.  
  53. });
  54.  
  55.  
  56.  
  57.  
  58.  
  59. }
  60.  
  61. </script>
Add Comment
Please, Sign In to add comment