I\'m using a HTML5 video player on my website and I want to disable right clicking on all my videos.
I tried using this code and it doesn\'t work:
&l
Better to use onContextMenu={(e) => e.preventDefault()} under the video tag of HTML5.
onContextMenu={(e) => e.preventDefault()}