Advertisement
Guest User

Untitled

a guest
Feb 14th, 2017
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. $(document).ready(function(){
  2. $("#add_err").css('display', 'none', 'important');
  3. $("#login").click(function(){
  4. username=$("#username").val();
  5. password=$("#password").val();
  6. $.ajax({
  7. type: "POST",
  8. url: "login.php",
  9. data: "name="+username+"&pwd="+password,
  10. success: function(html){
  11. if(html=='true') {
  12. window.location="index.php";
  13. }
  14. else {
  15. $("#add_err").css('display', 'inline', 'important');
  16. $("#add_err").html("$error");
  17. }
  18. }
  19. });
  20. return false;
  21. });
  22. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement