jQuery Listen For All Text Input Changes
events, forms, html, javascript, jquery
Solution
This question is an exact duplicate of another. See the answer with the highest number of up-votes as the answer to my question:
JS Events: hooking on value change event on text inputs
Problem
I have an input element within a form which I would like to be able to extract its value when the value changes. Take a look at this Fiddle: http://jsfiddle.net/spryno724/WaBzW/1/. By using the `change` event, I am able to display the value from the text input when the input looses focus. However, the value does not update when the form is reset or when JavaScript clears the value of the text input. Is there a specific event that I can listen for which will be dispatched when any change is made to a text input control? I'd like to avoid work-arounds, such as listening for when the form is reset, or when the clear button is pressed. This is a simplified example of what my application does, and it will get crazy pretty fast if I try to do all of that. Thank you for your time.