$(function () { $(".skin-switch a").click(function () { if (localstorage.ewave_theme == 1) { localstorage.ewave_theme = 0; } else { localstorage.ewave_theme = 1; } $("html").attr("data-theme", localstorage.ewave_theme); }); $(".ewave-fixed-toggle").click(function () { $("body").toggleclass("fixed-closed"); }); $(".head-search").click(function () { $(this).addclass("active"); }); $(document).click(function (e) { if ($(e.target).closest(".head-search").length == 0) { $(".head-search").removeclass("active"); } }); });