Welcome aboard! We are happy you are here and wish you good net-raft!
<!DOCTYPE html>
<html>
<body>
<select id="demo"></select>
<script>
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function () {
if (this.readyState == 4 && this.status == 200) {
myFunction(this);
}
};
xhttp.open("GET", "/project/macho2/sl_Jpm9vQYr0Z202145629/tech.xml", true);
xhttp.send();
function myFunction(xml) {
var i;
var xmlDoc = xml.responseXML;
var x = xmlDoc.getElementsByTagName("LANG");
for (i = 0; i < x.length; i++) {
document.getElementById("demo").innerHTML = document.getElementById("demo").innerHTML + "<option>" + x[i].getElementsByTagName("TECH")[0].childNodes[0].nodeValue;
}
}
</script>
</body>
</html>
The most helpful JAVASCRIPT solutions