I\'m having a problem with my button in my HTML5 application. When I press the button a Video player runs and plays the video that is stored locally. My issue now is that when I
Use onmouseup event.
onmouseup
var button = //your button button.onmouseup = function() { //your logic }