Friday 19 November 2010

Simple trick to disable right click in webpage

This is the most simple script that I ever found and it works well.. :D
First, find your <body> tag than add the following line:

oncontextmenu="return false;"

so, the final code will be like this:

<body oncontextmenu="return false;">

If you also want to disable keyboard stroke, or text select you can use this code. The placement is same with above...

onkeydown="return false;" //disable keystroke

onmousedown="return false;" //disable text select

Hope this useful for you.. :D

No comments:

Post a Comment