IHateMyJob2004
Lifer
I have read enough to know that this is how things are. When you call the following code in javascript, the combobox will change value as expected. However the onchange event does not get fired. From reading this is totally normally (however stupid).
var elem = document.getElementById("someComboBoxForm")
elem.value=7;
So, I have things that need to know that the value changed. How can I work around this? From what i have read, IE and Firefox/Others need to be treated slightly differently.
My head is ready to explode. 2 hours into this issue and I have gotten almost no where.
var elem = document.getElementById("someComboBoxForm")
elem.value=7;
So, I have things that need to know that the value changed. How can I work around this? From what i have read, IE and Firefox/Others need to be treated slightly differently.
My head is ready to explode. 2 hours into this issue and I have gotten almost no where.