How do you add the selected value of one combobox to another
I have a form with 2 selects like this:
<form id="form1">
<select id="countries" onChange="loadCountry()">
<option value="France">France</option>
<option value="UK">UK</option>...
how do you loop through child nodes to display the values?
For Examle:
XML
<Store>
<Customer>
<Name>a</Name>
<Age>1</Age>
<Address>high street</Address>
</Customer>
<Customer>
<Name>b</Name>
<Age>2</Age>
<Address>low street</Address>
</Customer>
</Store>
XSL...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.