Advertisement
NikolayBezay

IQOS IL paste the Adoric coupone for Cart Page GTM teg.

Apr 19th, 2021
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.82 KB | None | 0 0
  1. <script>
  2. (function() {
  3.     var waitPageTriggerElement = setInterval(function() {
  4.         var pageTriggerElements = document.querySelector('.coupon_info input[name="coupon_code"]');
  5.         var currentCoupone = window.localStorage.getItem('adoric_coupone');
  6.         var cuponeForm = document.querySelector('form[name="coupon_code_form_after"]');
  7.         if (pageTriggerElements && currentCoupone) {
  8.            clearInterval(waitPageTriggerElement);
  9.             pageTriggerElements.value = currentCoupone;
  10.         }
  11.         if (cuponeForm) {
  12.             cuponeForm.addEventListener('submit', function() {
  13.                 window.localStorage.removeItem('adoric_coupone');
  14.             });
  15.         }
  16.     }, 1000);
  17.     setTimeout(function() {
  18.         clearInterval(waitPageTriggerElement);
  19.     }, 10000);
  20. })();      
  21. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement