Skip to content

Instantly share code, notes, and snippets.

@sumanengbd
Created March 31, 2019 10:27
Show Gist options
  • Save sumanengbd/4cfbebf051226b736baf4154915cb384 to your computer and use it in GitHub Desktop.
Save sumanengbd/4cfbebf051226b736baf4154915cb384 to your computer and use it in GitHub Desktop.
Inspect Disable
function killCopy(e){
return false;
}
function reEnable(){
return true;
}
document.onselectstart=new Function ("return false"); if (window.sidebar){
document.onmousedown=killCopy; document.onclick=reEnable;
}
jQuery(document).ready(function(){
jQuery(document).bind("contextmenu",function(e){
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment