Skip to content

Instantly share code, notes, and snippets.

@jwarnox
Created July 16, 2019 12:50
Show Gist options
  • Save jwarnox/72d12a99f9491dc06a4a7e6c07498020 to your computer and use it in GitHub Desktop.
Save jwarnox/72d12a99f9491dc06a4a7e6c07498020 to your computer and use it in GitHub Desktop.
Cookies.js sample
// GET COOKIE
var cookieTextSize = Cookies.get('theme-textsize');
if (cookieTextSize) {
$('body').addClass('theme-textsize-' + cookieTextSize);
}
// SET COOKIE
$('.click-handler-for-text-size-bigger').on('click', function (e) {
Cookies.set('theme-textsize', 'bigger');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment