Nitecruzex
Newbie
- Jun 9, 2011
- 30
- 6
Copy the script in the head section. Please note that if you are putting up links in code form, your audience will have to type it word by word. They can't copy the link.
Script:
Script:
Code:
<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>