0

Using HTML5 video, right click presents some options and I'd like to disable/hide some of them .. can that be done ? Or is it all or nothing? I've seen how to disable completely .. but was hoping for customization if possible using CSS or JS but without 3rd party packages ...

James Kunz
  • 93
  • 5

1 Answers1

0
$(document).bind("contextmenu",function(ev){
    if(ev.target.nodeName=='VIDEO')
    {
        return false;
    }
});
nacesprin
  • 392
  • 7
  • 16