window.onload = function() { // Check if the current URL is the main domain URL if (window.location.href === 'https://www.storagequarters.com/') { // Display the modal document.getElementById('modalOverlay').style.display = 'block'; } document.getElementById('button').onclick = function() { document.getElementById('modalOverlay').style.display = 'none'; }; };