User:Knightmare/common.js

From ARMCO
< User:Knightmare
Revision as of 16:13, 18 November 2024 by Knightmare (talk | contribs) (Created page with "$(document).ready(function() { // Check if the TOC exists var toc = $('#toc'); if (toc.length) { toc.find('ul').hide(); // Hide the nested TOC levels...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
$(document).ready(function() {
    // Check if the TOC exists
    var toc = $('#toc');
    if (toc.length) {
        toc.find('ul').hide(); // Hide the nested TOC levels

        toc.find('li').each(function() {
            var $li = $(this);
            var $link = $li.find('a').first();
            if ($link.length) {
                // Add a click handler to toggle the nested TOC
                $link.click(function() {
                    $li.children('ul').toggle();
                });
            }
        });
    }
});