Advertisement
Guest User

Untitled

a guest
May 17th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. $("#login-submit").click(function() {
  2. user = $("#user").val();
  3. pass = $("#pass").val();
  4. var dataString = "user="+user+"&pass="+pass;
  5. var linkString = "index.html#home";
  6. if (user == "" || pass == "") {
  7. alert("Please fill in all fields");
  8. }
  9. else {
  10. $.ajax({
  11. type: "POST",
  12. url: "http://www.weddingindustryinsider.com/VAWEAPP/login.php",
  13. data: {user: user, pass: pass},
  14. cache: false,
  15. success: function(result) {
  16. if (result = "1") {
  17. alert("Login Sucess.");
  18. setTimeout(location.href = linkString,1000);
  19. }
  20. else { alert("Username or Password incorrect. Please try again."); }
  21. },
  22. });
  23. }
  24. return false;
  25. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement