MediaWiki:Common.js: Difference between revisions
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'); | |||
}); | |||
Revision as of 17:50, 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');
});