Posts

Showing posts from October, 2012

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 tag parameter for this, so the only way you can do it is by disabling context menus either on the container div, or the whole document. 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; }); });