Berikut script untuk menonaktifkan fungsi klik kanan pada browser. Dengan script ini ketika user mebuka halaman website maka secara otomatis klik kanan tidak akan berfungsi.
<script type="text/javascript">
document.oncontextmenu = new Function("return false;");
</script>
Update : beberapa script untuk menonaktifkan klik blok kebawah, text selection (block text), dan hotkeys.
<script type="text/javascript">
document.oncontextmenu = new Function("return false;"); /* Disable Kik kanan. */
document.onmousedown = new Function("return false;"); /* Disable klik blok kebawah. */
document.onselectstart = new Function("return false;");/* Disable text selection. */
document.onkeypress = new Function("return false;");/* Disable hotkeys. */
</script>