Answers for "how to disable the copy paste in some website"

0

disable copy text from a website

<script type="text/JavaScript">
//courtesy of BoogieJack.com
function killCopy(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=killCopy
document.onclick=reEnable
}
</script>
Posted by: Guest on January-13-2021

Code answers related to "how to disable the copy paste in some website"

Browse Popular Code Answers by Language