How can I populate a select list with the Facilities listed in the following xml file:
<HealthServices>
<Divisions>
<Division>Home Office</Division>
<Facility>Administration</Facility>
<Facility>Finance</Facility>
<Facility>Human Resources</Facility>...
I have javascript on a web page in our intranet to read an xml file. When I code the path as follows things work fine:
var xmlObj1 = new XML(".\xml\esf_data1.xml");
because xml is a folder in the path this web page is in.
I need to move the file in the xml folder to a different path on the...
I have a page that has 3 select list that are loaded from xml files with the following code:
var xmlObj1 = new XML("xml/esf_data1.xml");
var xmlObj2 = new XML("xml/esf_data2.xml");
xmlObj1.onLoad = function() {
}
xmlObj2.onLoad = function() {...
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.