In JavaScript/jQuery, I am registering click and touchstart events on a button, with this:
$('#open-about-popup').on('touchstart click', openAboutPopup_eventHandler)
Then in the event-handler, I have this:
e.stopPropagation();
e.preventDefault();
This is causing the next button-click not to fire. Do I have something wrong?
Thanks.