Re: [jQuery] Problems loading select options in IE

2006-11-10 Thread Michael Prinsloo
x27;ll have to take a look at fixing this. In the mean time you couldjust use the $.ajax() with a success callback that $().empty()'s theselect and then $().append()'s the resultant html to the select. This should work in IE with the latest release.--Brandon AaronOn 11/9/06, Michael Prins

Re: [jQuery] Problems loading select options in IE

2006-11-09 Thread Michael Prinsloo
Thanks guys. Think I'll get it sorted now. On 09/11/06, Klaus Hartl < [EMAIL PROTECTED]> wrote: Michael Prinsloo schrieb:> Hi>> I am generating some tags with php and then loading them into a> select box with jQuery's load method as follows:>> The S

[jQuery] Problems loading select options in IE

2006-11-09 Thread Michael Prinsloo
HiI am generating some tags with php and then loading them into a select box with jQuery's load method as follows:The Select Box: The _javascript_:$("#selectbox").load("phpfile.php", {action: "getoptions", alpha: "A"});This works well with Firefox but IE simply displays an empty select box. Loadin