LIBRARY

NEWSLETTER

2025-06-23

Avaliable in Following Languages:

2022-12-01

Avaliable in Following Languages:

function hideIconListItemsWithoutHref(root = document) { const listItems = root.querySelectorAll('li.elementor-icon-list-item'); listItems.forEach(item => { const anchor = item.querySelector('a[href]'); if (!anchor) { item.style.display = 'none'; } }); } // Run on initial load document.addEventListener("DOMContentLoaded", function () { hideIconListItemsWithoutHref(); // Observe for dynamic changes const observer = new MutationObserver(mutations => { mutations.forEach(mutation => { mutation.addedNodes.forEach(node => { if (node.nodeType === 1) { hideIconListItemsWithoutHref(node); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); });

PROJECT INFORMATION

DELIVERABLES