Advertisement
orenchuck

gtm soda not show camp after click checkout

Jan 20th, 2023 (edited)
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.60 KB | None | 0 0
  1. <script>
  2.     (function () {
  3.         function addKeyToStorage() {
  4.             var continueButton = document.querySelector('[bi-type="upsell go to cart(checkout) pdp"]');
  5.             if (continueButton) {
  6.                 continueButton.addEventListener('click', function () {
  7.                     sessionStorage.setItem("showAdoricGasCilinder", false);
  8.                 });
  9.             }
  10.         }
  11.         if (document.readyState === 'loading') {
  12.             document.addEventListener('DOMContentLoaded', addKeyToStorage);
  13.         } else {
  14.             addKeyToStorage();
  15.         }
  16.     })();
  17. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement