There is a situation on my website where I need to add a new <// option> for a specific selection field. I do the following:
1. Make an ajax request that returns parameter tags, for example
<option>one</option>
<option>two</option>
and etc.,
2. Set the internal html of the specific selection window
document.getElementById("id").innerHTML=response;
it works well in firefox / chrome but not in IE ....
any known solution for this.?
source
share