All my html5 video controls are visible and even hover effects are there but nothing happens on click. Play/Pause fullscreen slider buttons none of them are working, however with tab I can control these buttons but not with click
<video controls id="videoId2" class="hide">
<source ng-src="video/Help_role.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
From my js I am doing this to play
var v=$($('#helpModal').find("#videoId2")[0]);
v.removeClass("hide")
v[0].play();
});
Note: My video is playing fine. Only the html5 video player controls are not working