$(document).ready(function(){ $('body').on('click', '.js-sidebar', function(){ var $body = $('body'); if ($body.hasClass('big-container')) { $body.removeClass('big-container'); $.cookie('kt_rt_show_sidebar', 'false', {path: '/', samesite: 'Lax'}); } else { $body.addClass('big-container'); $.cookie('kt_rt_show_sidebar', 'big-container', {path: '/', samesite: 'Lax'}); } return false; }); });