Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm setting a date-time textfield value via a calendar widget. Obviously, the calendar widget does something like this : document.getElementById('datetimetext').value = date_value;

What I want is : On changing value in the date-time textfield I need to reset some other fields in the page. I've added a onchange event listener to the datetimetext field which is not getting triggered, because I guess onchange gets triggered only when the element gets focus & its value is changed on losing focus.

Hence I'm looking for a way to manually trigger this onchange event (which I guess should take care of checking the value difference in the text field).

Any ideas ?

Thanks in advance, Anitha

share|improve this question

2 Answers

up vote 37 down vote accepted

There's a couple of ways you can do this. If the onchange listener is a function set via the element.onchange property and you're not bothered about the event object or bubbling/propagation, the easiest method is to just call that function:

element.onchange();

If you need it to simulate the real event in full, or if you set the event via the html attribute or addEventListener/attachEvent, you need to do a bit of feature detection to correctly fire the event:

if ("fireEvent" in element)
    element.fireEvent("onchange");
else
{
    var evt = document.createEvent("HTMLEvents");
    evt.initEvent("change", false, true);
    element.dispatchEvent(evt);
}
share|improve this answer
thanks. this works, but am not sure about browser detection here. wondering if there is a way to do the same via YUI library. thanks anyways. – Anitha May 18 '10 at 11:48
1  
thanks a lot, this works flawlessly in any browsers – Phradion Feb 10 '12 at 1:44
Thanks. Seems to be working in Android's WebView with those 3 lines from else block. – Kuitsi Apr 30 at 13:38

For those using jQuery there's a convenient method: http://api.jquery.com/change/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.