Guest User

Untitled

a guest
Dec 18th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. const form = $('form[data-cart-item-add]');
  2. const url = '/remote/v1/cart/add';
  3. $.ajax({
  4. type: 'POST',
  5. url: url,
  6. xhrFields: {
  7. withCredentials: true,
  8. },
  9. contentType:'application/x-www-form-urlencoded; charset=UTF-8',
  10. processData: true,
  11. success: (response) => {
  12. console.log(response)
  13. },
  14. data:$(form).serialize()
  15. });
Add Comment
Please, Sign In to add comment