I would like to change target
on link
tag with my css. I would like to do this with javascript. It should be when I click on button.
I have html file
JavaScript
x
16
16
1
<!DOCTYPE html>
2
<html lang="pl">
3
<head>
4
<meta charset="utf-8">
5
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
6
7
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
8
9
<link rel="stylesheet" href="css/general.css">
10
<link id="my_css" rel="stylesheet" href="css/normal_mode.css">
11
12
13
</head>
14
<body id="my_body">
15
16
I have javascript file
JavaScript
1
9
1
function dark_mode()
2
{
3
if(document.getElementById("my_css").href == "css/normal_mode.css")
4
{
5
document.getElementById("my_body").className = "";
6
document.getElementById("my_name").className = "";
7
document.getElementById("my_css").href = "new.css";
8
9
Advertisement
Answer
Your approach is incorrect, or not practical. What you need to do is to load CSS for both themes and change the body theme data or class.
JavaScript
1
10
10
1
.theme-dark {
2
--bg: black;
3
--text: white;
4
}
5
6
.theme-light {
7
--bg: white;
8
--text: black;
9
}
10
in JS
JavaScript
1
5
1
document.querySelector(".switch-theme").addEventListener("click", () => {
2
document.body.classList.toggle("theme-dark");
3
document.body.classList.toggle("theme-light");
4
})
5