Guest User

Untitled

a guest
Feb 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <li><a href="#newgame" onclick="yourAJAXFunction()" id="linknewgame">Jouer</a></li>
  2.  
  3. function yourAJAXFunction(){
  4. $.ajax({
  5. url: "http://localhost/api/pages/newgame",
  6. method: "GET",
  7. data: "token=3660935154fe3d7e9612466f6e70fbe6",
  8. dataType: 'json',
  9. success: function(json) {
  10. console.log(json);
  11. $("#response").append("<p><b>Page title: " + json.data.content+"</p>");
  12. },
  13. error: function(data) {
  14. console.log("Error");
  15. }
  16. });
  17. }
Add Comment
Please, Sign In to add comment