Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Design Dropdown stay open after click? Reply To: Dropdown stay open after click?

#268399
Shikkediel
Participant

Just add this to the bottom of the script:

document.getElementById("myDropdown").addEventListener("click", function(e) {

  e.stopPropagation();
});