File size: 491 Bytes
acce155
 
7fc5bb1
 
 
 
 
 
 
 
acce155
1
2
3
4
5
6
7
8
9
10
11
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!';
    }
});