


<script>
  //   document.querySelector('.noclicklink').addEventListener('click', function(event) {
  //     event.preventDefault(); // This stops the href from working
  // });
  // document.addEventListener("DOMContentLoaded", function() {
  //     var link = document.querySelector('.noclicklink');
  //     if (link) {
  //         link.addEventListener('click', function(event) {
  //             event.preventDefault();
  //         });
  //     }
  // });
  document.addEventListener("DOMContentLoaded", function() {
    // 1. Grab ALL elements with the class
    var links = document.querySelectorAll('.noclicklink');

    // 2. Loop through each link and disable it
    links.forEach(function(link) {
      link.addEventListener('click', function(event) {
        event.preventDefault(); // Stops the href from firing
      });
    });
  });
  document.addEventListener('DOMContentLoaded', function() {

    const dropdowns = document.querySelectorAll('.quick-link.has-dropdown');

    dropdowns.forEach(dropdown => {

      dropdown.addEventListener('click', function(e) {

        if (window.innerWidth < 992) {
          e.preventDefault();

          dropdowns.forEach(item => {
            if (item !== dropdown) {
              item.classList.remove('active');
            }
          });

          dropdown.classList.toggle('active');
        }
      });
    });

    document.addEventListener('click', function(e) {
      if (!e.target.closest('.quick-link.has-dropdown')) {
        dropdowns.forEach(item => {
          item.classList.remove('active');
        });
      }
    });

  });
</script><?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//dfwsurf.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://dfwsurf.com/post-sitemap.xml</loc>
		<lastmod>2026-01-21T12:17:06+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dfwsurf.com/page-sitemap.xml</loc>
		<lastmod>2026-06-01T04:18:55+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dfwsurf.com/category-sitemap.xml</loc>
		<lastmod>2026-01-21T12:17:06+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dfwsurf.com/post_tag-sitemap.xml</loc>
		<lastmod>2025-10-24T06:42:34+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dfwsurf.com/team-category-sitemap.xml</loc>
		<lastmod>2025-10-24T05:01:32+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dfwsurf.com/author-sitemap.xml</loc>
		<lastmod>2026-05-21T17:14:46+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->