As title says, is it possible to limit number of characters inside of textarea, i try it with maxlength attribute but didn't work, is it possible with some other Html attribute or maybe JAVASCRIPT code?
I'm making simple calculator and I want to have textarea as place where all digits and operations will be displayed, and maxlength work when i add characthers manualy, but when javascript code (input.value += "character") add characters, than maxlength attribute didn't work.