Logo

What are you looking for?

Get help straight from our team...

HTML Snippets

Disable right click

Last updated on 14 Jul, 2020

To disable right click use the following snippet:

<script>
  $(document.body).addEvent('contextmenu', function(e) {
     e.stop();
  });
</script>

Did you find this article helpful?
Previous

Center files from File Area

Next