This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/assets/scripts/media-toggles.js

30 lines
No EOL
949 B
JavaScript

window.addEventListener('load', () => {
const initializeButtonSet = (buttonSet) => {
const buttons = buttonSet.querySelectorAll('button')
const buttonIds = Array.from(buttons).map(button => button.getAttribute('data-toggle'))
buttons.forEach(button => {
button.addEventListener('click', function () {
const targetId = this.getAttribute('data-toggle')
const targetContent = document.getElementById(targetId)
buttons.forEach(btn => {
btn.classList.remove('active')
btn.classList.add('secondary')
})
buttonIds.forEach(id => {
document.getElementById(id).classList.add('hidden')
})
this.classList.remove('secondary')
this.classList.add('active')
targetContent.classList.remove('hidden')
})
})
}
const buttonSets = document.querySelectorAll('.section-header-buttons')
buttonSets.forEach(initializeButtonSet)
})