Application

(function () { function changeFloorPlansLink() { var links = document.querySelectorAll('a'); for (var i = 0; i < links.length; i++) { var link = links[i]; var text = (link.textContent || '').replace(/\s+/g, ' ').trim().toUpperCase(); var href = link.getAttribute('href') || ''; if ( text === 'FLOOR PLANS' || href.indexOf('/floor-plans/') !== -1 || href.indexOf('/floor-plans') !== -1 ) { link.href = 'https://westwindva.com/find-your-home/'; } } } /* Run immediately */ changeFloorPlansLink(); /* Run again after the page fully loads */ window.addEventListener('load', changeFloorPlansLink); /* Run again after short delays in case theme loads menu late */ setTimeout(changeFloorPlansLink, 500); setTimeout(changeFloorPlansLink, 1500); setTimeout(changeFloorPlansLink, 3000); /* Watch for theme/menu changes */ var observer = new MutationObserver(function () { changeFloorPlansLink(); }); observer.observe(document.documentElement, { childList: true, subtree: true }); })();