Hi,
Can I collapse the categories in attachments by default without using JavaScript?
Thanks,
Raluca
Hi,
Can I collapse the categories in attachments by default without using JavaScript?
Thanks,
Raluca
Please check this code.
To show:
const divs = document.querySelectorAll('.table-tree');
divs.forEach(div => {
const uls = div.querySelectorAll('ul');
uls.forEach((ul, index) => {
if (index > 0) {
ul.classList.remove('hidden');
}
});
});
To hide:
const divs = document.querySelectorAll('.table-tree');
divs.forEach(div => {
const uls = div.querySelectorAll('ul');
uls.forEach((ul, index) => {
if (index > 0) {
ul.classList.add('hidden');
}
});
});