I want to set the maximum length of character for my texteditor. Users will enter text in Iframe in the editor. I am getting the characters through the keydown
event.
I get the "maxlength" by calculating length with text & maxlength and by setting keyflag as false.
My problem is that I now have to allow the user to edit text when user press backspace, delete, ctrl+special keys.
Is there any other general ways to achieve the maxlength property?