My Wishlist
Skip to content
document.querySelectorAll('.tab').forEach(tab => {
tab.addEventListener('click', function() {
document.querySelectorAll('.tab').forEach(t => t.classList.remove('active'));
document.querySelectorAll('.tab-pane').forEach(p => p.classList.remove('active'));
this.classList.add('active');
document.getElementById(this.getAttribute('data-tab')).classList.add('active');
});
});
- Choosing a selection results in a full page refresh.
- Opens in a new window.