Advertisement
Guest User

Untitled

a guest
Sep 29th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. $("#loginBtn").click(function() {
  2.  
  3. $.ajax({
  4.  
  5. type: 'POST',
  6. url: 'actions.php?action=login',
  7. data: 'username='+$("#loginUsername").val()+"&password="+$("#loginPassword").val(),
  8. success: function(result) {
  9. //futher processing
  10. }
  11.  
  12. });
  13.  
  14. });
  15.  
  16. quarkbits/
  17. |- actions.php
  18. |- js/
  19. | |- main.js
  20. |- views/
  21. | |- footer.php (contains the link to the main.js file)
  22. | |- header.php (contains the login button
  23. |- index.php (includes footer.php file)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement