No More Right Click
| Times viewed: 9345 Rating: 3/10 |
Just copy the following text in your code and users cannot right click on your page anymore.
<script language="javascript"> function noRightClick() { //Calling this script a function called noRightClick if (event.button==2) { //If the clicked button is 2 (right click) alert('Right click is disabled!') //Popup with the message: Right click is disabled! } } document.onmousedown=noRightClick //Now calling the function when clicked </script>
| Times viewed: 9345 Rating: 3/10 |
More Javascript Programming - Scripts Tutorials:
|