10 lines
262 B
JavaScript
10 lines
262 B
JavaScript
$("#themeToggle").on("click", function() {
|
|
const currentTheme = $("body").attr("data-bs-theme");
|
|
|
|
if (currentTheme == "light") {
|
|
$("body").attr("data-bs-theme", "dark");
|
|
}
|
|
else {
|
|
$("body").attr("data-bs-theme", "light");
|
|
}
|
|
}); |