You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
465 B
18 lines
465 B
7 years ago
|
$( document ).ready(function() {
|
||
|
|
||
|
var acc = document.getElementsByClassName("sanfona");
|
||
|
var i;
|
||
|
|
||
|
for (i = 0; i < acc.length; i++) {
|
||
|
acc[i].addEventListener("click", function() {
|
||
|
this.classList.toggle("active-sanfona");
|
||
|
var painel = this.nextElementSibling;
|
||
|
if (painel.style.display === "block") {
|
||
|
painel.style.display = "none";
|
||
|
} else {
|
||
|
painel.style.display = "block";
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
});
|