SyntaxFix
Write A Post
Hire A Developer
Questions
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; }); });