Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

prevent paste in input

window.onload = () => {
 const myInput = document.getElementById('myInput');
 myInput.onpaste = e => e.preventDefault();
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #prevent #paste #input
ADD COMMENT
Topic
Name
2+5 =