MediaWiki:Common.js: Difference between revisions
Created page with "→Any JavaScript here will be loaded for all users on every page load.: document.addEventListener('DOMContentLoaded', function () { document.querySelectorAll('.infobox-tab').forEach(button => { button.addEventListener('click', () => { const tab = button.dataset.tab; document.querySelectorAll('.infobox-panel').forEach(panel => panel.style.display = 'none'); document.querySelector('.infobox-panel.' + tab).style.display = 'block'; document.q..." |
No edit summary |
||
| Line 8: | Line 8: | ||
document.querySelectorAll('.infobox-tab').forEach(b => b.classList.remove('active')); | document.querySelectorAll('.infobox-tab').forEach(b => b.classList.remove('active')); | ||
button.classList.add('active'); | button.classList.add('active'); | ||
}); | }); | ||
}); | }); | ||
}); | }); | ||