// JavaScript voor night mode toggle $w.onReady(function () { $w('#nightModeBtn').onClick(() => { document.body.classList.toggle('night-mode'); localStorage.setItem('nightMode', document.body.classList.contains('night-mode')); }); // Keuze onthouden if (localStorage.getItem('nightMode') === 'true') { document.body.classList.add('night-mode'); } });
top of page
bottom of page