Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $.ajax({
  2. url: '/api/API/testapi',
  3. type: 'POST',
  4. data: JSON.stringify($('#data').val()),
  5. contentType: "application/json; charset=utf-8",
  6. dataType: 'text'
  7. }).done(function (r, t, e) {
  8. $('.card-footer h2').text(r);
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement