🎅 Follow Santa’s journey! Open our Advent Calendar to watch him go digital with Drooms. 

SantaDrooms

CHRISTMAS WITH DROOMS

Advent Calendar

Uh-oh! Last year, Santa lost track of the childrens’ wishlists and addresses! But don’t worry, this year Santa’s going digital.

Join us each day in December to see how Santa sets up his data room and discover the magic of Drooms.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const christmasDays = document.querySelectorAll('div.christmasday'); const today = new Date(); const currentDay = today.getDate(); const currentMonth = today.getMonth() + 1; christmasDays.forEach((div, index) => { const requiredDay = index + 1; // Add a default class to all divs div.classList.add('inactive'); if (currentMonth === 12 && currentDay >= requiredDay) { // Replace the 'inactive' class with an 'active' class for eligible divs div.classList.remove('inactive'); div.classList.add('active'); // Add your click event listener div.addEventListener('click', () => { console.log(`Day ${requiredDay}`); }); } });
Drooms