Pages

how to Disable right click and copy paste in webpage

 

 

Very Simple Method and Easy Disable right click on webpage

Use java script in <head>  tag

Copy and paste the script

<SCRIPT LANGUAGE="JavaScript"> 
<!-- Disable 
function disableselect(e){ 
return false 

function reEnable(){ 
return true 

//if IE4+ 
document.onselectstart=new Function ("return false") 
document.oncontextmenu=new Function ("return false") 
//if NS6 
if (window.sidebar){ 
document.onmousedown=disableselect 
document.onclick=reEnable 

//--> 
</script>

I hope it working fine.

No comments:

Post a Comment