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
The right click menu is a function of the web browser. To disable it, you can try to add the following JavaScript to the head section of your web page, just before the tag.
jQuery(document).ready(function(){ jQuery('video').bind('contextmenu',function() { return false; }); });