DHTML select component issue in IE browser
Post by xnag on
Jan 6, 2007 9:57:54 PM CST
Hi all,
I come across this scenario, maybe someone can help me out. When i use a select component, my IE browser will blink whenever this select component is needed to be painted on the screen. Below is a part of my code.
output += '<select id="test1" onChange="doSomething()">'; output += '<option value="0">Option1</option>'; output += '<option value="1">Option2</option>'; output += '</select>';
document.getElementById("testing_area").innerHTML = ''; document.getElementById("testing_area").innerHTML = output;
The weird thing, other components like button and text area does not make my IE browser blink. This only happens when i add in the select component code. Does anyone know why or did come across this problem before or have a better solution for this?
|
|