spfn-website/guides/guides.js

11 lines
296 B
JavaScript
Raw Normal View History

2025-06-06 00:16:40 +01:00
const guideContents = document.querySelectorAll(".guide-content");
function changeGuide(newID) {
guideContents.forEach(content => {
if (content.id == newID) {
content.style.display = "block";
} else {
content.style.display = "none";
}
})
}