eqeqwan21

obj.js

Jul 19th, 2025
365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(function () {
  2.   const saved = localStorage.getItem('showStats') !== '0';
  3.   $('#toggleStats').prop('checked', saved);
  4.  
  5.   $('#toggleStats').on('change', function () {
  6.     $('#divstat').toggle(this.checked);
  7.     localStorage.setItem('showStats', this.checked ? '1' : '0');
  8.   });
  9.   applyStatsVisibility();
  10. });
  11. function applyStatsVisibility() {
  12.   if (localStorage.getItem('showStats') === '0') {
  13.     $('#divstat').hide();
  14.   }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment