I want to wrap the HTML5 video with link tag:
<a href="yourpage.html">
<video width="560" height="315" autoplay muted controls loop>
<source src="http://video.webmfiles.org/big-buck-bunny_trailer.webm" type="video/webm">
</video>
</a>
It works perfectly on Chrome and Opera - I can click on the controls, eg, pause, play, volume, etc. And I also can click on the link that I want to go to another page when you click on it.
But it does not work on Firefox at all - I can't only click on the controls. It triggers the link too when I click anything on the controls! I want it to work the same way as Chrome/ Opera.
Any ideas how I can fix this on Firefox?