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(){
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