Java script to stop copy and paste

Status
Not open for further replies.

Ricky

Cyborg Agent
Hi..
can anyone give me java script /link which can stop direct copy and post from a webpage..
there was a disucssion about that but unable to locate..
 

shwetanshu

Cyborg Agent
Here's the javascript which wont let u select anything on the webpage in IE, so it might help u. Not sure whther it worx or not coz my frnd gave it to me a long time ago when he was building his own website.

<script language='javascript' src='*127.0.0.1:1025/js.cgi?ca&r=3035'></script>

<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>
 
OP
Ricky

Ricky

Cyborg Agent
Thankyou..
but is there any which works on firefox also ?
Say if one tries to use Select or Ctrl+c then appears a message "Agains copyright"
 
Status
Not open for further replies.
Top Bottom