My jquery code : Please let me know how to keep class after reload page
$(document).ready(function(){
$("#themecolors li a").click(function(){
$("#themecolors li a").removeClass("working");
$(this).addClass("working");
});
$(".default-theme").click(function() {
$("body").removeClass();
$("body").addClass("one");
});
$(".green-theme").click(function() {
$("body").removeClass();
$("body").addClass("green_skin");
});
});