[jQuery] Re: textarea chars counter

2009-06-13 Thread dreame4
If someone gets here at any time, the solution is http://stackoverflow.com/questions/686995/jquery-catch-paste-input On Jun 12, 2:43 pm, dreame4 <91drea...@gmail.com> wrote: > Thanks for your accurate remark. > > I came up with adding some event but I don't know which. Focus doesn't > work as I

[jQuery] Re: textarea chars counter

2009-06-12 Thread MorningZ
"But id doesn't work when I click the right mouse button on it and choose "Paste"" And this should be easy as cake to understand: Copy and Paste will *not* fire the "keyup" event which your code is requiring You'll need to wire that event to more events to make it work with C&P (focus would co

[jQuery] Re: textarea chars counter

2009-06-12 Thread dreame4
Thanks for your accurate remark. I came up with adding some event but I don't know which. Focus doesn't work as I want to. It doesn't update counter immediately after pasting text. Until after "leaving" input. Just as focus event works. Some other ideas? On 12 Cze, 14:35, MorningZ wrote: > "Bu