Birthday / static /js /countdown.js
ayush2917's picture
Update static/js/countdown.js
7fc5bb1 verified
raw
history blame contribute delete
491 Bytes
document.addEventListener('DOMContentLoaded', async () => {
const countdownDiv = document.getElementById('countdown');
try {
const response = await fetch('/countdown');
const data = await response.json();
countdownDiv.innerHTML = `${data.days} days until Manavi’s birthday on April 19, 2025!`;
} catch (error) {
console.error('Error fetching countdown:', error);
countdownDiv.innerHTML = 'Error loading countdown—try again!';
}
});