// Define blacklist and delay lists const YETT_BLACKLIST = [/f.vimeocdn.com/, /cdn.nfcube.com/]; const YETT_DELAYLIST = [/cdn-cookieyes.com/]; // Function to delay script loading function delayScriptLoading() { const delayedScripts = []; const observer = new MutationObserver((mutations) => { mutations.forEach((mutation) => { Array.from(mutation.addedNodes).forEach((node) => { if (node.nodeType === 1 && node.tagName === "SCRIPT") { if (node.src && YETT_DELAYLIST.some((pattern) => pattern.test(node.src))) { delayedScripts.push(node.src); if (node.parentNode) { node.parentNode.removeChild(node); } } } }); }); }); observer.observe(document.documentElement, { childList: true, subtree: true, }); setTimeout(() => { delayedScripts.forEach((src) => { const newScript = document.createElement("script"); newScript.src = src; newScript.async = true; document.head.appendChild(newScript); }); }, 2000); } // Function to block script loading function blockScriptLoading() { const observer = new MutationObserver((mutations) => { mutations.forEach((mutation) => { Array.from(mutation.addedNodes).forEach((node) => { if (node.nodeType === 1 && node.tagName === "SCRIPT") { if (node.src && YETT_BLACKLIST.some((pattern) => pattern.test(node.src))) { node.type = "javascript/blocked"; node.addEventListener("beforescriptexecute", (event) => { if (node.getAttribute("type") === "javascript/blocked") { event.preventDefault(); } node.removeEventListener("beforescriptexecute", arguments.callee); }); if (node.parentNode) { node.parentNode.removeChild(node); } } } }); }); }); observer.observe(document.documentElement, { childList: true, subtree: true, }); } // Function to change image loading attribute function changeImageLoadingAttribute() { setTimeout(() => { const images = document.querySelectorAll("img"); images.forEach((img) => { if (img.getAttribute("loading") == "lazy" || !img.getAttribute("loading")) { img.setAttribute("loading", "eager"); } }); }, 1500); } // Call the functions delayScriptLoading(); blockScriptLoading(); changeImageLoadingAttribute();
top of page
I'm a product

I'm a product

SKU: 0009
₨100.00 Regular Price
₨95.00Sale Price
I'm a product description. I'm a great place to add more details about your product such as sizing, material, care instructions and cleaning instructions.
  • PRODUCT INFO

    I'm a product detail. I'm a great place to add more information about your product such as sizing, material, care and cleaning instructions. This is also a great space to write what makes this product special and how your customers can benefit from this item.
  • RETURN & REFUND POLICY

    I’m a Return and Refund policy. I’m a great place to let your customers know what to do in case they are dissatisfied with their purchase. Having a straightforward refund or exchange policy is a great way to build trust and reassure your customers that they can buy with confidence.
  • SHIPPING INFO

    I'm a shipping policy. I'm a great place to add more information about your shipping methods, packaging and cost. Providing straightforward information about your shipping policy is a great way to build trust and reassure your customers that they can buy from you with confidence.
bottom of page