0
function dpdShowHide(){
var orgBtn = getElementById('organizador');
var dpdOrg = getElementById('org-dpd-list');
if (orgBtn !== false) {
dpdOrg.visibility('none')
}
else{
dpdOrg.visibility('block')
}
}
So my problem is this, I’m trying to make a hidden menu (a ul) appear and disappear by clicking on li(parent element of that other ul), but it’s not working
You could also put the HTML code?
– PauloHDSousa