I\'m trying to develop a typing speed competition using JavaScript. People should write all the words they see from a div to a textarea.
To prevent cheating (like copyin
It's easy to disable the paste feature by using jQuery. For example, if you have an edit field like this one:
Here is the text
Then, this piece of jQuery code will disable the pasting feature on it:
$('#someInput').on('paste', function(e) { return false; });