Тест:СМ

Материал из Space Stories Wiki

Добро пожаловать на официальную вики страницу Space Stories Colonials Marines по игре Space Station 14

<script> document.addEventListener("DOMContentLoaded", function() {

   var headers = document.querySelectorAll("h3");
   headers.forEach(function(header) {
       header.style.cursor = "pointer";
       header.addEventListener("click", function() {
           var nextElement = header.nextElementSibling;
           if (nextElement.style.display === "none") {
               nextElement.style.display = "block";
           } else {
               nextElement.style.display = "none";
           }
       });
   });

});

document.addEventListener('DOMContentLoaded', function() {

   const buttons = document.querySelectorAll('.custom-button');
   buttons.forEach(button => {
       button.addEventListener('click', function() {
           this.classList.toggle('button-active');
       });
   });

}); </script>