MediaWiki:Common.js: Difference between revisions

An idea by Jeff Lawlor
Created on 2025-04-25
No edit summary
No edit summary
Line 2: Line 2:




/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load.  
document.addEventListener('DOMContentLoaded', function () {
document.addEventListener('DOMContentLoaded', function () {
   document.querySelectorAll('.infobox-tab').forEach(button => {
   document.querySelectorAll('.infobox-tab').forEach(button => {
Line 17: Line 17:
   });
   });
});
});
*/
$('.infobox-tab').click(function(e)
{
var tab = e.target.attr('data-tab');
$('.infobox-panel').hide();
$('.infobox-panel.' + tab).show();
$('.infobox-tab').removeClass('active');
$('.infobox-tab.' + tab).addClass('active');
});