MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* 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. */ | ||
/* | /*Upgrade Icon Menu*/ | ||
mw.loader.using(['jquery'], function() { | |||
$(document).ready(function(){ | |||
$('.upgrade-icon').click(function(e){ | |||
$('.upgrade-icon').removeClass('active-icon'); | |||
$(this).toggleClass('active-icon'); | |||
var id = $(this).attr('id'); | |||
$('.upgrade-content').hide(); | |||
$('#' + id + '.upgrade-content').show(); | |||
}); | |||
}); | |||
}); | |||
}; |
Revision as of 23:54, 19 May 2024
/* Any JavaScript here will be loaded for all users on every page load. */ /*Upgrade Icon Menu*/ mw.loader.using(['jquery'], function() { $(document).ready(function(){ $('.upgrade-icon').click(function(e){ $('.upgrade-icon').removeClass('active-icon'); $(this).toggleClass('active-icon'); var id = $(this).attr('id'); $('.upgrade-content').hide(); $('#' + id + '.upgrade-content').show(); }); }); });