All Collections
How-To's
Prevent right clicking
Prevent right clicking
Alex Piepenbrink avatar
Written by Alex Piepenbrink
Updated over a week ago

If you don't want users to right click on your site to save an image or video, you can add this code anywhere on the page or on the master page in an un-iframed embed element.

<script> window.addEventListener('contextmenu', function (event) { event.preventDefault(); }, false); </script>
Did this answer your question?