dipeshsilwal1
New Member
- Messages
- 184
- Reaction score
- 0
- Points
- 0
Here is the script which works for HTMl and PHP. This script allows to make ur site copyright which means no one can copy any texts from your site. Example: www.softmania.cjb.net
Here is the code:
Need feedback please.
Here is the code:
HTML:
<script language="JavaScript1.2">
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>
Last edited by a moderator: