Advertisement
Guest User

Untitled

a guest
Jan 24th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. var values = $('#form_input').serialize();
  2. var game_button = $('#game_start');
  3.  
  4.  
  5.  
  6.  
  7.  
  8. $(game_button).on('click', function() {
  9. $.ajax({
  10. url: "postcontroller.php",
  11. type: "post",
  12. data: values,
  13. success: function (response) {
  14.  
  15. },
  16. error: function (jqXHR, textStatus, errorThrown) {
  17. console.log(textStatus, errorThrown);
  18. }
  19. });
  20.  
  21. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement