You can make your website away from being right-clicked by inserting code in Site Management.
1. On Content editor, click Site -> Setting -> Site Setting, then click Gear Icon.
2. On Site Config panel, make sure it stays on Config -> CMS. Click on CSS/JS tab, and insert this code in JavaScript box, and save it.
<script>
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
</script>
=============================
Comments
0 comments
Article is closed for comments.