Advertisement
NikolayBezay

Payngo save product price for Adoric GTM

Aug 31st, 2021
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.81 KB | None | 0 0
  1. <script>
  2.  (function () {
  3.         var pageProductFormTimer = 10;
  4.    
  5.         function seveProductPrice(productPrice) {
  6.             if (!productPrice) return false;
  7.             if (productPrice.length == 0) return false;
  8.             window.adoricCurrentProductPrice = parseFloat(productPrice);
  9.         }
  10.    
  11.         function waitPageProduct() {
  12.             pageProductFormTimer--;
  13.             var productPriceElement = document.querySelector('.product-info-price [itemprop="price"]');
  14.             if (!productPriceElement && pageProductFormTimer > 0) {
  15.                  setTimeout(waitPageProduct, 1000);
  16.             } else if (pageProductFormTimer > 0) {
  17.                   seveProductPrice(productPriceElement.getAttribute('content'));
  18.             }
  19.         }
  20.         waitPageProduct();
  21.     })();
  22. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement