Advertisement
NikolayBezay

Wallashops excludeZapCampaign GTM teg

Nov 25th, 2021
838
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.90 KB | None | 0 0
  1. <script>
  2. (function() {
  3.     function checkTextValue(keyValue) {
  4.         if (keyValue.indexOf('מחשבים וציוד היקפי') != -1 ||
  5.         keyValue.indexOf('מזגנים') != -1 ||
  6.         keyValue.indexOf('טלפונים סלולרים וסמארטפונים') != -1) {
  7.             window.excludeZapReferrerCampaign = true;
  8.         }
  9.     }
  10.  
  11.     var waitPageTriggerElement = setInterval(function() {
  12.         var bradcrampElement = document.querySelector('div[class*="category-breadcrumbs"] ol > li:nth-child(3), div[class*="page-breadcrumbs"] ol > li:nth-child(3),div[class*="pdp-breadcrumbs"] ol > li:nth-child(3)');
  13.         if (bradcrampElement) {
  14.             clearInterval(waitPageTriggerElement);
  15.             checkTextValue(bradcrampElement.textContent);
  16.         }
  17.     }, 500);
  18.     setTimeout(function() {
  19.         clearInterval(waitPageTriggerElement);
  20.     }, 10000);
  21. })();
  22. </script>
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement