R
Size: a a a
MH
$('.checkbox__text').on("click", function(){
var theme = $.cookie("theme");
if(theme == "dark") {
$.cookie("theme","light");
ChangeTheme("light");
} else {
ChangeTheme("dark");
$.cookie("theme","dark");
}
});
function ChangeTheme(theme) {
if(theme == "dark") {
var new_theme = "light",
color1,
color2;
$(".checkbox__text").text("Тёмная сторона");
$('.checkbox__text').prev().attr("checked", false);
$('.checkbox__text').prev().prop("checked", false);
}
else if(theme == "light") {
$(".checkbox__text").text("Светлая сторона");
$('.checkbox__text').prev().attr("checked", true);
$('.checkbox__text').prev().prop("checked", true);
}
}
CM