How can I disable \"Save Video As...\" from a browser\'s right-click menu to prevent clients from downloading a video?
Are there more complete solutions that prevent
This is a simple solution for those wishing to simply remove the right-click "save" option from the html5 videos
$(document).ready(function(){ $('#videoElementID').bind('contextmenu',function() { return false; }); });