11 lines
No EOL
363 B
JavaScript
Executable file
11 lines
No EOL
363 B
JavaScript
Executable file
document.querySelectorAll('.accordion-checkbox').forEach(cbox => {
|
|
cbox.addEventListener('change', function() {
|
|
const label = this.previousElementSibling
|
|
const caret = label.querySelector('.text')
|
|
if (cbox.checked) {
|
|
caret.innerHTML = ''
|
|
} else {
|
|
caret.innerHTML = ''
|
|
}
|
|
})
|
|
}) |