Forum Discussion
FrankMartin1610
Sep 17, 2023Copper Contributor
Disable contextmenu (right click) in Media Web Part
I want to disable contextmenu (right click) in Media Web Part so user cannot download video file. Found solution here which I tested in browser by inspecting element and updating HTML and it worked. ...
- Sep 18, 2023
Added a script web part on page and wrote following code to stop context menu from appearing.
<script> document.querySelector('video').setAttribute('oncontextmenu', "return false;"); </script>
FrankMartin1610
Sep 18, 2023Copper Contributor
Added a script web part on page and wrote following code to stop context menu from appearing.
<script>
document.querySelector('video').setAttribute('oncontextmenu', "return false;");
</script>