happy.hood.rp
Ветеран
- Сообщения
- 163
- R-Коины
- 2 721
Кто-то может помочь подключить к ниже приведенному js коду localstorage?
const btn = document.querySelector(".btn-toggle");
const theme = document.querySelector("#theme-link");
btn.addEventListener("click", function() {
if (theme.getAttribute("href") == "light-theme.css") {
theme.href = "dark-theme.css";
} else {
theme.href = "light-theme.css";
}
});