User:Knightmare/common.js
< User:Knightmare
Jump to navigation
Jump to search
Revision as of 16:14, 18 November 2024 by Knightmare (talk | contribs)
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(); }); } }); } });