Hi Can anyone explain what this mean in simple form? (UL.id!="show") ? UL.style.display = "none" : UL.style.display = "block"; Code (markup): Thanks
It's equivalent of: if (UL.id!="show") { UL.style.display = "none"; } else { UL.style.display = "block"; } Code (markup):