Skip to content
Advertisement

Keep dark or light mode over different pages with javascript

Basically, I got a dark mode on the front page, with the script being (from W3schools) :

JavaScript

And the button :

JavaScript

and some CSS just for example :

JavaScript

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

and this on each page:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement