how to trigger a event in jquery when the value of a textarea is changing without losing focus form textarea.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the
keyupevent to get the value as it’s entered, like this:Or, to be a bit safer:
Unlike only using
changethis will get the value as it updates, instead of when the<textarea>loses focus.