The code below is working fine except that if I paste a string with more than 10 characters in it, it should only paste in the first 10 characters. Currently it does not do this, how do I prevent more than 10 characters being pasted?
|
|
simply use
No javascript needed for this. It automatically takes care of copy paste also. Here is the updated jsFiddle. |
|||||||||||
|
|
As stated, It is hard to determine how to prevent the user (in firefox for example) from entering the text area, selecting the browser menu In short, there is no universal way to prevent user paste in a proper fashion. However, you could hack a solution (always my favorite when it seems there is no way to continue on something you really want). This approach I am about to suggest is dependent on how many timers you have running. If you have multiple timers for animation, google suggests you try to fold them all into one timing unit which the others derive from. If this is the case, please refactor your timers. Implement a global timer. Implement a function which runs ever 25ms based on that timer. Cache the contents of the textarea. See if those contents have changed. textarea
script
I think although this implements a timer, this is a very practical solution. It also happens to work (tested). :) |
||||
|
|
|
You can't peek into the clipboard buffer from browsers, so your only option is to limit it to 10 chars like you currently do. Use the maxlength="10" attribute instead of the javascript character counting thing you got going on.
|
|||||||||||
|
