Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save psflannery/6320896 to your computer and use it in GitHub Desktop.
Save psflannery/6320896 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
var body_class = $.cookie('body_class');
if(body_class) {
$('body').attr('class', body_class);
}
$("a#switcher").click(function() {
$("body").toggleClass("alternate_body");
$.cookie('body_class', $('body').attr('class'));
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment