VerixID

Syarat dan Ketentuan

Berlaku sejak: 1 Maret 2026

// ─── FAQ ACCORDION ──────────────────────────────────────────────────────────── // Native
sudah handle toggle, ini hanya untuk animasi icon +/- document.addEventListener('DOMContentLoaded', () => { document.querySelectorAll('.faq-item').forEach(item => { item.addEventListener('toggle', () => { const icon = item.querySelector('.faq-icon'); if (!icon) return; icon.textContent = item.open ? '−' : '+'; }); }); });