I want a JavaScript code which will link xml document to a web page. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I want a JavaScript code which will link xml document to a web page.

I have xml document created but i dont know how to link it to my website.

10th Jul 2020, 3:17 AM
Albert Tetteh Adjei
Albert Tetteh Adjei - avatar
1 Answer
+ 4
you can use XMLHttpRequest <table id="demo"></table> <script> function loadXMLDoc() { var xmlhttp = new XMLHttpRequest(); xmlhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { myFunction(this); } }; xmlhttp.open("GET", "yourxml.xml", true); xmlhttp.send(); } function myFunction(xml) { var i; var xmlDoc = xml.responseXML; var table="<tr><th>Artist</th><th>Title</th></tr>"; var x = xmlDoc.getElementsByTagName("CD"); for (i = 0; i <x.length; i++) { table += "<tr><td>" + x[i].getElementsByTagName("ARTIST")[0].childNodes[0].nodeValue + "</td><td>" + x[i].getElementsByTagName("TITLE")[0].childNodes[0].nodeValue + "</td></tr>"; } document.getElementById("demo").innerHTML = table; } </script> this is XML : https://www.w3schools.com/xml/cd_catalog.xml
10th Jul 2020, 5:14 AM
Sudarshan Rai
Sudarshan Rai - avatar