Delete the download function for a classic video element

Hi There,

is there a way to remove the download function of a classic video element?

By right-clicking on the video player, the video must not be saved.

Thanks for help!

Hi There,

Please try adding this custom code under Theme Options > JS:

jQuery(document).ready(function($) {
    $("video").bind("contextmenu",function(){
        return false;
    });
});

Hope it helps :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.