Javascript Events: Getting notified of changes in an <input> control value - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T12:43:57Z http://stackoverflow.com/feeds/question/146916 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/146916/javascript-events-getting-notified-of-changes-in-an-input-control-value 5 Javascript Events: Getting notified of changes in an <input> control value Daniel Magliola 2008-09-28T22:37:35Z 2009-12-04T15:54:24Z <p>I have the following problem:</p> <p>I have an HTML textbox (<code>&lt;input type="text"&gt;</code>) whose contents are modified by a script I cannot touch (it is my page, but i'm using external components).</p> <p>I want to be notified in my script every time the value of that textbox changes, so I can react to it.</p> <p>I've tried this:</p> <pre><code>txtStartDate.observe('change', function() { alert('change' + txtStartDate.value) }); </code></pre> <p>which (predictably) doesn't work. It only gets executed if I myself change the textbox value with the keyboard and then move the focus elsewhere, but it doesn't get executed if the script changes the value.</p> <p>Is there another event I can listen to, that i'm not aware of?</p> <p><br /><br /></p> <p>I'm using the Prototype library, and in case it's relevant, the external component modifying the textbox value is Basic Date Picker (www.basicdatepicker.com) </p> http://stackoverflow.com/questions/146916/javascript-events-getting-notified-of-changes-in-an-input-control-value/146928#146928 5 Answer by noah for Javascript Events: Getting notified of changes in an <input> control value noah 2008-09-28T22:44:41Z 2008-09-29T00:46:32Z <p>As you've implied, change (and other events) only fire when the user takes some action. A script modifying things won't fire any events. Your only solution is to find some hook into the control that you can hook up to your listener.</p> <p>Here is how I would do it:</p> <pre><code>basicDatePicker.selectDate = basicDatePicker.selectDate.wrap(function(orig,year,month,day,hide) { myListener(year,month,day); return orig(year,month,day,hide); }); </code></pre> <p>That's based on a cursory look with Firebug (I'm not familiar with the component). If there are other ways of selecting a date, then you'll need to wrap those methods as well.</p> http://stackoverflow.com/questions/146916/javascript-events-getting-notified-of-changes-in-an-input-control-value/146984#146984 0 Answer by Dan Herbert for Javascript Events: Getting notified of changes in an <input> control value Dan Herbert 2008-09-28T23:23:30Z 2008-09-28T23:23:30Z <p>Depending on how the external javascript was written, you could always re-write the relevant parts of the external script in your script and have it overwrite the external definition so that the change event is triggered.</p> <p>I've had to do that before with scripts that were out of my control.</p> <p>You just need to find the external function, copy it in its entirety as a new function with the same name, and re-write the script to do what you want it to.</p> <p>Of course if the script was written correctly using closures, you won't be able to change it too easily...</p> http://stackoverflow.com/questions/146916/javascript-events-getting-notified-of-changes-in-an-input-control-value/147011#147011 1 Answer by insin for Javascript Events: Getting notified of changes in an <input> control value insin 2008-09-28T23:37:37Z 2008-09-28T23:42:59Z <p>IE has an <a href="http://msdn.microsoft.com/en-us/library/ms536956(VS.85).aspx" rel="nofollow">onpropertychange</a> event which could be used for this purpose.</p> <p>For real web browsers (;)), there's a <a href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-MutationEvent" rel="nofollow">DOMAttrModified mutation event</a>, but in a couple of minutes worth of experimentation in Firefox, I haven't been able to get it to fire on a text input when the value is changed programatically (or by regular keyboard input), yet it will fire if I change the input's name programatically. Curiouser and curiouser...</p> <p>If you can't get that working reliably, you could always just poll the input's value regularly:</p> <pre><code>var value = someInput.value; setInterval(function() { if (someInput.value != value) { alert("Changed from " + value + " to " + someInput.value); value = someInput.value; } }, 250); </code></pre> http://stackoverflow.com/questions/146916/javascript-events-getting-notified-of-changes-in-an-input-control-value/147030#147030 0 Answer by Christopher Nadeau for Javascript Events: Getting notified of changes in an <input> control value Christopher Nadeau 2008-09-28T23:49:04Z 2008-09-28T23:49:04Z <p>Aside from getting around the problem like how noah explained, you could also just create a timer that checks the value every few hundred milliseconds.</p> http://stackoverflow.com/questions/146916/javascript-events-getting-notified-of-changes-in-an-input-control-value/147067#147067 0 Answer by kanian for Javascript Events: Getting notified of changes in an <input> control value kanian 2008-09-29T00:22:20Z 2008-09-29T00:22:20Z <p>I had to modify the YUI datable paginator control once in the manner advised by Dan. It's brute force, but it worked in solving my problem. That is, locate the method writing to the field, copy its code and add a statement firing the change event and in your code just handle that change event. You just have to override the original function with that new version of it. Polling, while working fine seems to me a much more resource consuming solution.</p> http://stackoverflow.com/questions/146916/javascript-events-getting-notified-of-changes-in-an-input-control-value/147112#147112 0 Answer by Shadow2531 for Javascript Events: Getting notified of changes in an <input> control value Shadow2531 2008-09-29T00:43:21Z 2008-09-29T00:43:21Z <p>addEventListener("<a href="http://www.whatwg.org/specs/web-forms/current-work/#the-domcontrolvaluechanged" rel="nofollow">DOMControlValueChanged</a>" will fire when a control's value changes, even if it's by a script.</p> <p>addEventListener("<a href="http://www.whatwg.org/specs/web-forms/current-work/#the-change" rel="nofollow">input</a>" is a direct-user-initiated filtered version of DOMControlValueChanged.</p> <p>Unfortunately, DOMControlValueChanged is only supported by Opera currently and input event support is broken in webkit. The input event also has various bugs in Firefox and Opera.</p> <p>This stuff will probably be cleared up in HTML5 pretty soon, fwiw.</p> http://stackoverflow.com/questions/146916/javascript-events-getting-notified-of-changes-in-an-input-control-value/148677#148677 1 Answer by Daniel Magliola for Javascript Events: Getting notified of changes in an <input> control value Daniel Magliola 2008-09-29T13:40:09Z 2008-09-29T13:40:09Z <p>Noah, that's a great answer, it works perfectly. Can I ask you how you found out about that method easily with Firebug?</p> <p>Because I thought of wrapping a function inside BDP, but I didn't want to spend hours trying to figure out that code.</p> http://stackoverflow.com/questions/146916/javascript-events-getting-notified-of-changes-in-an-input-control-value/1847863#1847863 -1 Answer by Esteban Feldman for Javascript Events: Getting notified of changes in an <input> control value Esteban Feldman 2009-12-04T15:54:24Z 2009-12-04T15:54:24Z <p>How to make this work whit jQuery and a text input where the value is set like</p> <p>myTextControl.value = someValue</p>