> Thanks for the reply and the link to the library. > > The interesting thing is that the default .append behavior seems to > work for just about everything else (appending <li> to <ol> and > <spans> to a <div>) it's just appending <option> to a <select> that I > can't get to work.
Unfortunately, browsers have a lot of trouble with innerHTML (the technique that jQuery uses in .append()) and <option> elements. Currently, the only good solution is to use something like Michael's DOM creation plugin (as mentioned above). --John _______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
