Skip to content

Instantly share code, notes, and snippets.

View remyarajeshpaedh's full-sized avatar

Remya Rajesh remyarajeshpaedh

View GitHub Profile
@remyarajeshpaedh
remyarajeshpaedh / disabled right click function.js
Created August 20, 2012 09:11
disabled right click function
<script type="text/javascript">
var message="You Fool! I am not willing!";
function clickIE4(){if (event.button==2){alert(message);return false;}}
function clickNS4(e){if (document.layers||document.getElementById&&!document.all){if (e.which==2||e.which==3){alert(message);return false;}}}
if (document.layers){document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS4;}