I have a page where I generate textareas via AJAX and fire events if those textareas are changed. This works great on IE9+ and other browsers such as Firefox, Chrome, Safari, etc. The problem is IE8 and under. They don't fire the change event. The code is:
Textarea looks like:
<textarea name="answer8158" id="answer8158"></textarea>
Javascript looks like:
document.observe('change', function(e, el) {
if (el = e.findElement('textarea')) {
//Do Something
}
});
Is there a workaround to make the change event work? I would be fine with PrototypeJS or pure javascript solution.
Thanks.
el = e.findElementis a paste error, right? – RobG Sep 7 '12 at 3:32blurevent? It should give the same result as most of the time,changeis fired when the input-like element loses the focus, instead of being fired each time a key is pressed that alters the element's content/attributes. – Stock Overflaw Sep 7 '12 at 12:00if ((el = e.findElement(…)))to make it clearer that assignment is intended. – RobG Sep 8 '12 at 1:17