PHP Classes

File: vendor/b12phpfw/themes/bootstrap/js/exp_collapse.js

Recommend this page to a friend!
  Classes of Slavko Srakocic   B12 PHP FW   vendor/b12phpfw/themes/bootstrap/js/exp_collapse.js   Download  
File: vendor/b12phpfw/themes/bootstrap/js/exp_collapse.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: B12 PHP FW
Manage database records with a PDO CRUD interface
Author: By
Last change: Update of vendor/b12phpfw/themes/bootstrap/js/exp_collapse.js
Date: 1 year ago
Size: 366 bytes
 

Contents

Class file image Download
var coll = document.getElementsByClassName("collapsible"); var i; for (i = 0; i < coll.length; i++) { coll[i].addEventListener("click", function() { this.classList.toggle("active"); var content = this.nextElementSibling; if (content.style.display === "block") { content.style.display = "none"; } else { content.style.display = "block"; } }); }