Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
48
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. dataType: 'jsonp',
  3. jsonp: 'callback',
  4. data: {
  5. 'url': url,
  6. 'name': name,
  7. 'favoriteTypeId': favoriteTypeId,
  8. 'applicationId': applicationId
  9. },
  10. url: CoreUrl + 'Favorite/Create',
  11. success: function (data) {
  12. console.log('Added!');
  13. }
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement