(F12の開発者ページのコンソールに)
これでアコーディオンのフルオープンできました
document.querySelectorAll('.accordion-content').forEach(content => {
content.removeAttribute('hidden');
});
document.querySelectorAll('.accordion-trigger').forEach(button => {
button.setAttribute('aria-expanded', 'true');
});