Skip to content

Instantly share code, notes, and snippets.

@sehrishnaz
Created September 4, 2020 09:45
Show Gist options
  • Save sehrishnaz/70b1be3b1fbde520ce37518805a670f7 to your computer and use it in GitHub Desktop.
Save sehrishnaz/70b1be3b1fbde520ce37518805a670f7 to your computer and use it in GitHub Desktop.
Disable Right Click and Text Selection in Blogger | WordPress
<script type="text/javascript">
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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment