Advertisement
nrzmalik

Storyline Player Dark and Light Theme Switcher

Aug 30th, 2023
372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.29 KB | Source Code | 0 0
  1. const themeStylesheet = document.getElementById("theme-stylesheet");
  2.  if (themeStylesheet.getAttribute("href") === "light.css") {
  3.                 themeStylesheet.setAttribute("href", "dark.css");
  4.             } else {
  5.                 themeStylesheet.setAttribute("href", "light.css");
  6.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement