Created
March 31, 2019 10:27
-
-
Save sumanengbd/4cfbebf051226b736baf4154915cb384 to your computer and use it in GitHub Desktop.
Inspect Disable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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