/** * Footer Component * Dynamically loads the Kelly Green footer across all pages */ (function() { const footerHTML = ` `; // Wait for DOM to be ready if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', insertFooter); } else { insertFooter(); } function insertFooter() { const footerContainer = document.getElementById('footer-container'); if (footerContainer) { footerContainer.innerHTML = footerHTML; // Load BBB script after footer HTML is inserted // Scripts in innerHTML don't execute, so we need to load it manually loadBBBScript(); } } function loadBBBScript() { // Check if script already exists if (document.querySelector('script[src*="legacy.js"]')) { return; } // Create and insert the BBB script const script = document.createElement('script'); script.type = 'text/javascript'; script.src = 'https://seal-alaskaoregonwesternwashington.bbb.org/inc/legacy.js'; // Insert script before the BBB link so it can find and style it const bbbContainer = document.getElementById('bbb-seal-container'); if (bbbContainer) { bbbContainer.insertBefore(script, bbbContainer.firstChild); } } })();