Here is what my website does:
So I'm using a basic jQuery method "addclass" like so:
$( "body" ).addClass( "orange-background-color" );
.orange-background-color {
background: orange;
}
The user has the option to click on an icon in the navigation menu to change the background of the site to orange.
Easy enough.
But...if the user is on the home page and then goes to the about page, how can I "keep" the new body class on the about page too, without the user have to re-click the icon in the menu?