I'm dynamically creating a select node with option nodes inside. The code works fine in FF & IE8.

But it refuses to work in IE8 in quirks mode or ie7 compatibility mode. And it refuses to work in IE6.

The option nodes do get added to the DOM.

Example code is http://jsfiddle.net/jKmh4/3/

Does anyone know how to trick ie into rerendering part of the DOM ?

The issue is with calling the AddListItems function via a click event rather then calling it directly.

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

The option nodes do get added to the DOM.

Yeah, it's definitely a rendering bug. The only real workaround I could find was to hide the option box and show it again, after adding the <option> elements:

PersonnelSelectorListBox.hide().show();

This forces the browser to re-render the content properly.

http://jsfiddle.net/AndyE/jKmh4/4/

link|improve this answer
I was looking for a way to rerender the dom. .hide().show() so easy. – Raynos Nov 4 '10 at 10:03
I had a similar issue with dynamically added selects in IE9, after dynamically changing their options: I could select the new options with the cursor keys, but the dropdown still displayed the old options. hide().show() finally fixed it for me, thanks a lot! – Treb Dec 23 '11 at 13:54
I like it. A kick-ass workaround. – simplyharsh Feb 13 at 11:57
feedback

Your Answer

 
or
required, but never shown

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