Skip to main content
All CollectionsHow-To's
Prevent right clicking
Prevent right clicking
S
Written by Scott Spargo
Updated over 10 months 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?