can we seen an example?
the_woodsman wrote:
Hi all, I have a html page with a massive (200+ options) drop down: <select name="data[Something][country_id]" id="someID"> <option value="1">United Kingdom</option> <option value="39">Afghanistan</option> <option value="40">Aland Islands</option> .... etc etc! By itself, this paeg loads fine. When I try to ajax load it using .load, the select box doesn't render properly in any browser - IE gives an empty select, and dumps the countries beneath it, Chrome has an empty select and no sign of the countries. Firefox displays an empty select with the countries beneath, but the countries are formatted as if they were in a select! My first thought was that it's invalid markup, but I can't find anyhting, and as I said it renders fine if you call the page directly and not via AJAX. Anyone seen anything like this before? Thanks in advance...