> I've got a problem, probably found a bug in jQuery.
> The $.load function doesn't refresh the DOM in select-fields when
> using IE6 (7 not tested) or Opera(8.5 and 9beta) but in FF it works.

It's a cross-browser issue, arguably a bug in IE (and Opera?), but should
jQuery should try to work around the problem. I am pretty sure that IE does
not support innerHTML to update options on a select element. The ajax
.load() basically reduces to innerHTML, so that won't work. I believe it
does work to replace the entire select though, maybe you could do that. Or,
you could send your information as JSON and have the callback build the
option elements using "new Option" methods.

 



_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to