Tagged Questions
2
votes
1answer
48 views
Use javascript to prevent context menu on CTRL+Leftclick
I am trying to allow my CMS users to click certain controls with ALT+CTRL both pressed, but this results in the context menu being shown, because CTRL+Leftclick simulates a rightclick, at least here ...
2
votes
3answers
2k views
How to disable right-click save on one specific image only
I'm running an Asian e-commerce site where users post images of their products. Is there a way to disable right click for only 1 specific image on the page?
E.g. When viewing a product, there is a ...
0
votes
3answers
108 views
Disable RightClick on every tag except textarea and textfield
I found this cross browser script
<script language=JavaScript>
<!--
var message="Function Disabled!";
function clickIE4(){
if (event.button==2){
alert(message);
return ...