Disabling HTML5 Video Right-click Download

So, for the Arena Hotel project I've just completed I needed to prevent the default HTML right-click context menu that allows download of videos. There is no

Wedge this code in:


$(document).ready(function(){
  // Kill the right-click context menu globally
  document.oncontextmenu = function() { return false; }
  // or just kill for a particular container div
  $('#mydiv').bind('contextmenu',function() { return false; });

});


Comments

Popular posts from this blog

Installing LAMP Apache/MySQL/PHP on Chromebook/Chromebox

Installing Ubuntu Linux on your ChromeBox/ChromeBook

Changing your Mac OSX Terminal's default text editor