(Created page with "$(document).ready(function() { var nav = $('#mw-panel'); // Select the sidebar panel or modify as needed $(window).scroll(function() { if ($(this).scrollTop() > 100) { nav.addClass('sticky'); } else { nav.removeClass('sticky'); } }); }); $(document).ready(function() { $('#p-navigation ul').addClass('dropdown'); // Select the navigation bar });") |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
$(document).ready(function() { |
$(document).ready(function() { |
||
// Hide TOC by default if it's set to hidden |
|||
var nav = $('#mw-panel'); // Select the sidebar panel or modify as needed |
|||
if ($('#toctogglecheckbox').is(':checked')) { |
|||
⚫ | |||
⚫ | |||
if ($(this).scrollTop() > 100) { |
|||
⚫ | |||
⚫ | |||
} else { |
|||
nav.removeClass('sticky'); |
|||
⚫ | |||
⚫ | |||
}); |
|||
// Toggle TOC visibility on click |
|||
$(document).ready(function() { |
|||
⚫ | |||
$('#p-navigation ul').addClass('dropdown'); // Select the navigation bar |
|||
$('#toc').toggleClass('toc-hidden'); |
|||
⚫ | |||
}); |
}); |