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
It works fine for me.
$(document).bind("contextmenu",function(ev){ if(ev.target.nodeName=='VIDEO') { return false; } });