My SMM panel
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.
 
 
 
 
 
 

16 lines
380 B

  1. var cols = document.getElementsByClassName("collapsible");
  2. var i;
  3. for (i = 0; i < cols.length; i++) {
  4. cols[i].addEventListener("click", function() {
  5. this.classList.toggle("active");
  6. // var content = this.nextElementSibling;
  7. // if (content.style.display === "block") {
  8. // content.style.display = "none";
  9. // } else {
  10. // content.style.display = "block";
  11. // }
  12. });
  13. }