Wednesday, January 19, 2011

Disable Text Selecting on webpage using Java Script

----------Script Here----------


<SCRIPT TYPE="text/javascript">
<!--
//Disable select-text script (IE4+, NS6+)
//visit http://www.mahihackingworld.blogspot.com/2011/01/disable-text-selecting-on-webpage-using.html
///////////////////////////////////
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
// -->
</SCRIPT>


----------Script Here----------


Note:- 

* Paste above script between <head> </head>.

 

No comments:

Post a Comment