MediaWiki:Common.js: Difference between revisions
No edit summary |
No edit summary |
||
| Line 21: | Line 21: | ||
$('.infobox-tab').click(function(e) | $('.infobox-tab').click(function(e) | ||
{ | { | ||
var tab = e.target.attr('data-tab'); | var tab = $(e.target).attr('data-tab'); | ||
$('.infobox-panel').hide(); | $('.infobox-panel').hide(); | ||
$('.infobox-panel.' + tab).show(); | $('.infobox-panel.' + tab).show(); | ||
Revision as of 17:52, 16 May 2025
console.log("✅ MediaWiki:Common.js loaded");
/* Any JavaScript here will be loaded for all users on every page load.
document.addEventListener('DOMContentLoaded', function () {
document.querySelectorAll('.infobox-tab').forEach(button => {
console.log("Found button");
button.addEventListener('click', () => {
console.log("✅ Taba licked!");
const tab = button.dataset.tab;
document.querySelectorAll('.infobox-panel').forEach(panel => panel.style.display = 'none');
document.querySelector('.infobox-panel.' + tab).style.display = 'block';
document.querySelectorAll('.infobox-tab').forEach(b => b.classList.remove('active'));
button.classList.add('active');
});
});
});
*/
$('.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');
});