Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.js

MediaWiki interface page
Revision as of 07:27, 29 March 2025 by Veza (talk | contribs)

Note: After publishing, 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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */

$(document).ready(function() {
    // True accordion behavior: collapse others when one is expanded
    $('.accordion-section').on('click', function(e) {
        var $this = $(this);
        // If clicking the header (not a link inside content), toggle it
        if (e.target.tagName !== 'A' && !$this.hasClass('mw-collapsed')) {
            $this.addClass('mw-collapsed');
        } else if (e.target.tagName !== 'A') {
            $('.accordion-section').not(this).addClass('mw-collapsed'); // Collapse all others
            $this.removeClass('mw-collapsed'); // Expand this one
        }
    });

    // Disable link clicks in collapsed sections
    $('.accordion-section.mw-collapsed a').on('click', function(e) {
        e.preventDefault(); // Prevent link from working when collapsed
    });

    // Re-enable links when expanded
    $('.accordion-section').on('click', function() {
        if (!$(this).hasClass('mw-collapsed')) {
            $(this).find('a').off('click'); // Remove the preventDefault when expanded
        }
    });
});