Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // CHANGE THEME COLOR ON CLICK
- var colorLi = $(".color-list li");
- colorLi.on('click',function () {
- $("link[href*='color']").attr("href", $(this).attr("data-value"));
- });
- // CHANGE THEME COLOR ON CLICK
- $(".layout-select li#box").on('click',function () {
- $(".main-layout").removeClass("wide");
- $(".main-layout").addClass("box");
- });
- // CHANGE THEME COLOR ON CLICK
- $(".layout-select li#wide").on('click',function () {
- $(".main-layout").removeClass("box");
- $(".main-layout").addClass("wide");
- });
Add Comment
Please, Sign In to add comment