I am using this javascript where I can change a class onClick (other class).
$(window).load(function(){
$(".changefontA").click(function () {
$("body").removeClass("a").addClass("b");
$(this).hide();
$(".changefontB").fadeIn();
});
$(".changefontB").click(function () {
$("body").removeClass("b").addClass("a");
$(this).hide();
$(".changefontA").fadeIn();
});
});
Because it's a huge change in the font I want to store it in a cookie so when the visitor goes to another page, the website will remember the change and don't switch back to the original font. I'm completely new to cookies so I hope someone can help me or give me a head start.
If you are going to use the jQuery cookie plugin, you could do something like
Demo: Fiddle