I have a textbox with an onchange event. Why does this event not fire when the user uses the autocomplete feature to populate the textbox?
I am working with Internet Explorer. Is there a standard and relatively simple solution to workaround this problem, without me having to disable the autocomplete feature?
Last time I had that issue, I ended up using the
onpropertychangeevent for Internet Explorer instead. I read about that here on MSDN: it is the recommended way to get around it.