Monthly Archives: June 2009
Disable right click to prevent page content
Some web developers and client want to disable the right click to prevent the theft their web content specially image. It can do by using a simple line of html code below though it can bypass in many ways. <body oncontextmenu=”return false;”> Update: I have got a best reference below: No Right Click Script
Disable text selection on website by using javascript
Sometimes you may need to disable text selection of an HTML page. It is very easy way how you can do it. Below is the source codes: <script type=”text/javascript” language=”JavaScript”>function disableText(e){ return false;}function reEnable(){ return true;}//For browser IE4+document.onselectstart = new Function (“return false”);//For browser NS6if (window.sidebar){ document.onmousedown = disableText; document.onclick = reEnable;}</script> Just copy the…