Basically, I got a dark mode on the front page, with the script being (from W3schools) :
JavaScript
x
6
1
<script>
2
function darklightmode() {
3
var element = document.body;
4
element.classList.toggle("dmode");
5
} </script>
6
And the button :
JavaScript
1
4
1
<button onclick="darklightmode()" style="background:none; border: none;">
2
<img src="images/ld-icon.png" class="icon">
3
</button>
4
and some CSS just for example :
JavaScript
1
5
1
.dmode li a{
2
transition: 1s all;
3
color: #2E3440;
4
background: none;}
5
So how can I, with some Javascript, make the mode the user is using stay between pages and not come back to default when accessing another page ?
Beginner here, any help appreciated.
Advertisement
Answer
You’d need to store the current theme somewhere. Try using localstorage.
Example from How do i set dark mode theme across multiple pages? (this question is a duplicate):
JavaScript
1
9
1
checkbox.addEventListener( 'change', function() {
2
localStorage.setItem('dark',this.checked);
3
if(this.checked) {
4
body.classList.add('dark')
5
} else {
6
body.classList.remove('dark')
7
}
8
});
9
and this on each page:
JavaScript
1
4
1
if(localStorage.getItem('dark')) {
2
body.classList.add('dark');
3
}
4