Advertisement
NikolayBezay

Nautica add user coupon to the field.

Nov 2nd, 2021
755
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.64 KB | None | 0 0
  1. <script>
  2. (function() {
  3.     var waitPageTriggerCookie = setInterval(function() {
  4.             var nativeCouponeInput = document.querySelector('#coupon_code');
  5.             var adoricCouponValue = window.localStorage.getItem('adoricCouponValue');
  6.             if (nativeCouponeInput && adoricCouponValue) {
  7.                clearInterval(waitPageTriggerCookie);
  8.                 nativeCouponeInput.value = adoricCouponValue;
  9.                 window.localStorage.removeItem('adoricCouponValue');
  10.             }
  11.         }, 1000);
  12.         setTimeout(function() {
  13.             clearInterval(waitPageTriggerCookie);
  14.         }, 10000);
  15. })();
  16. </script>
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement