Make uncopyable content for your blog or page
Just copy the below script into your website
Resource: https://answers.yahoo.com/question/index?qid=20090603213426AALHjvb who actually got it from http://en.kioskea.net/faq/674-disabling-right-click-on-your-webpage
<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>
Resource: https://answers.yahoo.com/question/index?qid=20090603213426AALHjvb who actually got it from http://en.kioskea.net/faq/674-disabling-right-click-on-your-webpage
<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>
Comments
Post a Comment