document.addEventListener('DOMContentLoaded', () => { const message = document.getElementById('message'); fetch('update.json') .then(response => response.json()) .then(data => { const update = data[0]; message.textContent = update.message; const updateElement = document.querySelector('.update'); // safer than getElementsByClassName if (update.message === "") { updateElement.style.display = "none"; } }) .catch(error => { console.error('Error fetching data:', error); businessCard.innerHTML = '
Error loading data. Check the console.
'; // Display an error message }); });