Home › Forums › Design › Dropdown stay open after click? › Reply To: Dropdown stay open after click?
March 17, 2018 at 10:41 am
#268399
Participant
Just add this to the bottom of the script:
document.getElementById("myDropdown").addEventListener("click", function(e) {
e.stopPropagation();
});