Tutorial Guide
    Tutorial Man
    3D Resources
    3D Tutorials

No More Right Click

Social Bookmarks   Add to Del.icio.us   Add to Digg   Submit to Reddit   Stumble It!   Blink & Share     Share on Share on Technorati   Share on Facebook
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
Social Bookmarks   Add to Del.icio.us   Add to Digg   Submit to Reddit   Stumble It!   Blink & Share     Share on Share on Technorati   Share on Facebook
More Javascript Programming - Scripts Tutorials: