More actions
Created page with "→All JavaScript here will be loaded for users of the Citizen skin: var footer = document.getElementById("current-year"); currentyear.innerHTML = document.write(new Date().getFullYear());" |
No edit summary |
||
Line 1: | Line 1: | ||
/* All JavaScript here will be loaded for users of the Citizen skin */ | /* All JavaScript here will be loaded for users of the Citizen skin */ | ||
var | var currentyear = document.getElementById("current-year"); | ||
currentyear.innerHTML = document.write(new Date().getFullYear()); | currentyear.innerHTML = document.write(new Date().getFullYear()); |
Revision as of 14:46, 21 May 2025
/* All JavaScript here will be loaded for users of the Citizen skin */
var currentyear = document.getElementById("current-year");
currentyear.innerHTML = document.write(new Date().getFullYear());