Dantes (обсуждение | вклад) Нет описания правки |
Dantes (обсуждение | вклад) Нет описания правки |
||
Строка 74: | Строка 74: | ||
</div> | </div> | ||
</div> | </div> | ||
<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> |
Версия от 07:56, 26 августа 2024
<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>