Advertisement
orenchuck

gtm soda click checkout (rewrite Dan)

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