Advertisement
Guest User

Untitled

a guest
Feb 16th, 2020
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $(document).ready(function(){if(localStorage.theme) {$('#wrapper').addClass( localStorage.theme );} else{$('#wrapper').addClass('light-mode');} $("#theme-toggler").click(function(){if ($('#wrapper').hasClass( 'light-mode')){$('#wrapper').removeClass('light-mode').addClass('night-mode'); localStorage.theme = 'night-mode';} else { $('#wrapper').removeClass('night-mode').addClass('light-mode'); localStorage.theme = 'light-mode'; } }); });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement