Why Is My Text Not Being Added To The Textarea After The Second Change Event?
I am trying to add text in the the
Solution 1:
.text
changes the inner content of the textarea, which is used as default value. Once the value was changed by the user, changing the default value won't have any effect.
Use .val
to change the value, just like with any other form control element.
Post a Comment for "Why Is My Text Not Being Added To The Textarea After The Second Change Event?"