Template:CheckboxWithTimestamp
From Hidden Mickey Wiki
<script> function setTimestamp(checkbox) {
const box = checkbox.nextElementSibling;
if (checkbox.checked) {
const now = new Date();
const timestamp = now.toLocaleString(); // local date + time
box.textContent = timestamp;
} else {
box.textContent = "";
}
} </script>