website-zola/static/js/note.js

15 lines
555 B
JavaScript
Raw Permalink Normal View History

2024-09-11 21:22:13 +02:00
document.addEventListener('DOMContentLoaded', function() {
document.querySelectorAll('.note-toggle').forEach(function(toggleButton) {
var content = toggleButton.nextElementSibling;
var isHidden = content.style.display === 'none';
toggleButton.setAttribute('aria-expanded', !isHidden);
toggleButton.addEventListener('click', function() {
var expanded = this.getAttribute('aria-expanded') === 'true';
this.setAttribute('aria-expanded', !expanded);
content.style.display = expanded ? 'none' : 'block';
});
});
});