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: Difference between revisions

MediaWiki interface page
Created page with "Any JavaScript here will be loaded for all users on every page load.: $(document).ready(function() { $('.mw-collapsible').on('click', function() { $('.mw-collapsible').not(this).addClass('mw-collapsed'); }); });"
 
No edit summary
Tag: Reverted
Line 6: Line 6:
     });
     });
});
});
console.log("hi");

Revision as of 07:22, 29 March 2025

/* Any JavaScript here will be loaded for all users on every page load. */

$(document).ready(function() {
    $('.mw-collapsible').on('click', function() {
        $('.mw-collapsible').not(this).addClass('mw-collapsed');
    });
});

console.log("hi");