Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
home
/
puskom
/
mastur
/
post-grid
/
includes
/
blocks
/
terms-list
/
//home/puskom/mastur/post-grid/includes/blocks/terms-list/front-scripts.js
document.addEventListener("DOMContentLoaded", function (event) { var groupLable = document.querySelectorAll('.group-lable'); if (groupLable != null) { groupLable.forEach(item => { item.addEventListener('click', function () { var isActive = item.classList.contains('active'); var wrapid = item.getAttribute('wrapid'); var childWrap = document.getElementById('child-wrap-' + wrapid); if (childWrap != null) { if (isActive) { item.classList.remove('active'); childWrap.style.display = 'none' } else { item.classList.add('active'); childWrap.style.display = 'block' } } }) }) } });