Advertisement
Guest User

Untitled

a guest
Aug 18th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $.ajax({
  2.                 url: 'saveScores.php', //This is the current doc
  3.                 type: "POST",
  4.                 dataType:'json', // add json datatype to get json
  5.                 data: ({score: timer}),
  6.                 success: function(data){
  7.                     console.log(data);
  8.                 }
  9.             });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement