// PREVENT CLIPBOARD COPYING
document.querySelector('body').addEventListener("copy", function(evt){
// Change the copied text if you want
evt.clipboardData.setData("text/plain", "Copying is not allowed on this webpage");
// Prevent the default copy action
evt.preventDefault();
}, false);
// PREVENT CLIPBOARD COPYING
document.querySelector('body').addEventListener("copy", function(evt){
if(evt.target.nodeName === "A" && (evt.target.href.indexOf("mailto:") === 0 || evt.target.href.indexOf("tel:") === 0)) return;
// Change the copied text if you want
evt.clipboardData.setData("text/plain", "Copying is not allowed on this webpage");
// Prevent the default copy action
evt.preventDefault();
}, false);