דברו איתנו

יש לך שאלה? צריך עזרה?
אנחנו כאן לכל שאלה, בכל עניין

document.addEventListener("DOMContentLoaded", function () { const trigger = document.querySelector(".switch-btn"); const section1 = document.querySelector("#section-1"); const section2 = document.querySelector("#section-2"); trigger.addEventListener("click", function () { section1.style.display = "none"; section2.style.display = "block"; }); });