<script>
document.addEventListener("DOMContentLoaded", function () {

    const tabs = document.querySelectorAll(".wpb-resource-tabs .g-filters-item");
    const grid = document.querySelector(".w-grid-list");

    if (!grid) return;

tabs.forEach(tab => {
    tab.addEventListener("click", function (e) {
        e.preventDefault();

        let filter = this.getAttribute("data-filter");

        // GRID FILTER
        let items = document.querySelectorAll(".w-grid-item");

        items.forEach(item => {
            if (filter === "*") {
                item.style.display = "";
            } else {
                item.style.display = item.classList.contains(filter.replace(".", "")) ? "" : "none";
            }
        });

        // ACTIVE CLASS
        tabs.forEach(t => t.classList.remove("active"));
        this.classList.add("active");

        // ✅ UPDATE URL HASH
        if (filter === "*") {
            history.pushState(null, null, window.location.pathname);
        } else {
            window.location.hash = filter.replace(".", "");
        }
    });
});
});
</script>
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://itsme.biz/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://itsme.biz/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://itsme.biz/wp-sitemap-posts-video_pdf-1.xml</loc></sitemap><sitemap><loc>https://itsme.biz/wp-sitemap-posts-news-1.xml</loc></sitemap><sitemap><loc>https://itsme.biz/wp-sitemap-posts-team-members-1.xml</loc></sitemap><sitemap><loc>https://itsme.biz/wp-sitemap-posts-our_mentors-1.xml</loc></sitemap><sitemap><loc>https://itsme.biz/wp-sitemap-posts-resources-1.xml</loc></sitemap><sitemap><loc>https://itsme.biz/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://itsme.biz/wp-sitemap-taxonomies-post_tag-1.xml</loc></sitemap><sitemap><loc>https://itsme.biz/wp-sitemap-taxonomies-resource_category-1.xml</loc></sitemap></sitemapindex>
