I try lot of javascript and php for completely remove copy past to my site .. but lot of Plugins available for override copy past.. example plugin for chrome "Don't F*** With Paste"
Any one know how to save my site? i need disable my copy past completely in my inputbox
Email: <input type="textbox" id="email"><br/>
<script type="text/javascript">
window.onload = function() {
const myInput = document.getElementById('email');
myInput.onpaste = function(e) {
e.preventDefault();
}
}
</script>
this also not work
onCopy="return false" onDrag="return false" onDrop="return false"
onPaste="return false"
this one also not work with that plugins