var allowPaste = function(e){ e.stopImmediatePropagation(); return true; }; document.addEventListener('paste', allowPaste, true); var allowCopy = function(e){ e.stopImmediatePropagation(); return true; }; document.addEventListener('copy', allowCopy, true);
Do you think the data is wrong ? Report Here
Comments