I would like to disable right click on my website (Opencart3.0.3.3).
I saw a very simple method:
https://www.isquaretechnologies.com/dis ... -web-page/
Code: Select all
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
Can any friend tell me how to do it?
Do we need to modify these codes?
Many Thanks!