Advertisement
Guest User

Untitled

a guest
May 28th, 2019
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $.ajax({
  2. url: "api/rounds/eventsByDisplay",
  3. type: "POST",
  4. contentType: 'application/json',
  5. dataType: "json",
  6. data: {
  7. display: "1"
  8. },
  9. success: function(result) {
  10. console.log("yay");
  11. },
  12. error: function(xhr, resp, text) {
  13. // show error to console
  14. console.log(xhr, resp, text);
  15. }
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement