Friday 23 January 2015

Load xml data in Javascript

Load xml data in Javascript 
load_xml_data.html:
=====================

<html>

<body>
    <h1>W3Schools Internal Note</h1>
    <div>
        <b>To:</b>  <span id="to"></span>
        <br />
        <b>From:</b>  <span id="from"></span>
        <br />
        <b>Message:</b>  <span id="message"></span>
    </div>

    <script>
        if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari
            xmlhttp = new XMLHttpRequest();
        } else { // code for IE6, IE5
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        }
        xmlhttp.open("GET", "node.xml", false);
        xmlhttp.send();
        xmlDoc = xmlhttp.responseXML;
       
        document.getElementById("to").innerHTML = xmlDoc.getElementsByTagName("exitButtonText")[0].childNodes[0].nodeValue;
        document.getElementById("from").innerHTML = xmlDoc.getElementsByTagName("balanceButtonText")[0].childNodes[0].nodeValue;
       // document.getElementById("message").innerHTML = xmlDoc.getElementsByTagName("body")[0].childNodes[0].nodeValue;
    </script>

</body>

</html>


node.xml:
==========

<?xml version="1.0" encoding="UTF-8" ?>
<node>
    <to>Tove</to>
    <from>Jani</from>
    <heading>Reminder</heading>

    <body>Don't forget me this weekend!</body>
</node>




No comments:

Post a Comment