In a page I have a tab of which it contains few select boxes. Each selectbox contains around 40 countries. That’s in my HTML 120 x <option value="countrycode">Country Name</option>. Is there any way that I could load that HTML content when the tab button is pressed? I was thinking of XML.
Thanks alot
cant you just hook in to the onfocus event of the select and you check whether the select has data loaded in it or not, if not make the query to the server and retrieve your option data and remembr to build up the markup on your client side.
What do you think?