To any devs here, can AI or scripts detect if a paragraph entry into a form/field
was done via TYPING or COPY and PASTE method? ty
was done via TYPING or COPY and PASTE method? ty
Join the BEST cam affiliate program on the internet! 

// Get input element
var input = document.getElementById('myInput');
// Listen for keydown
input.addEventListener('keydown', function(event) {
console.log('User is typing');
});
// Listen for copy-paste
input.addEventListener('paste', function(event) {
console.log('User pasted some text');
});

Comment