MediaWiki:Common.js
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
function countdownToChristmas() {
const targetDate = new Date(new Date().getFullYear(), 11, 25); // Dec 25 of current year
const now = new Date();
// If Christmas already passed this year, use next year's Christmas
if (now > targetDate) {
targetDate.setFullYear(targetDate.getFullYear() + 1);
}
function updateCountdown() {
const now = new Date();
const diff = targetDate - now;
if (diff <= 0) {
document.getElementById('xmas-timer').innerText = "🎄 Merry Christmas!";
return;
}
const days = Math.floor(diff / (1000 * 60 * 60 * 24));
const hours = Math.floor((diff / (1000 * 60 * 60)) % 24);
const minutes = Math.floor((diff / (1000 * 60)) % 60);
const seconds = Math.floor((diff / 1000) % 60);
document.getElementById('xmas-timer').innerText =
`🎅 Countdown to Christmas: ${days}d ${hours}h ${minutes}m ${seconds}s`;
}
updateCountdown(); // initial call
setInterval(updateCountdown, 1000);
}
$(document).ready(countdownToChristmas);
alert("JS is working!");