Files
sld-php-template/assets/js/main.js
2026-04-27 08:48:03 +01:00

9 lines
278 B
JavaScript

/* @ default js*/
function yearNow(textlocation) {
//This is a function to substitutes a value into the current year.
//Usually good for the footer.
var data = new Date();
var year;
year = data.getFullYear();
document.querySelector(textlocation).replaceWith(year);
}