my current project is a html website that contains a dropdown menu (javascript/jquery) and a html5 videoplayer (video-tag only).
When clicking on a menu entry, the d
explanation: the html5 video player absorbs the touch events if controls are enabled.
background: the menu overlayed the video container when dropped down, but the menu item links were not clickable.
solution: as a workaround i temporarily disable the controls by removing the html video attribute "controls" with javascript when the menu is dropped down, and re-add the "controls" attribute when the menu is dropped up again.