Guest User

Untitled

a guest
Dec 5th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.26 KB | None | 0 0
  1. $('button#login').click(function () {
  2. alert($("#loginform").serialize());
  3.  
  4. $.ajax({
  5.     type: "POST",
  6.     url: "includes/login.php",
  7.     data: $("#loginform").serialize(),
  8.     success: function(msg){
  9.         alert(msg);
  10.         window.location.reload()
  11.     }
  12.  });
  13.  });
Add Comment
Please, Sign In to add comment