Extract data from an XML file using plain JavaScript

← PrevNext →

Last updated: 29th September 2022

XML is in use for a very long time and used worldwide for its simplicity and the friendliness it provides to developers. The core purpose of designing XML was to create web pages. It also serves as a lightweight data source, and easily distributed across the web. Here in this post, I'll show you how to extract or get data from an XML file using plain JavaScript.

xmlhttprequest

👉 Do you know you can extract or read data from an external XML file using jQuery Ajax? Check out this article.
Read data from XML file using jQuery

Data written in an XML file is a markup language and even by viewing it, we can figure out the type of data it stores. However, we need to extract the data programmatically using JavaScript (and jQuery), which can later be displayed on a web page.

While taking a dig on XML, the very first thing comes into our minds in AJAX (Asynchronous JavaScript and XML) and this is what we will discuss in this article.

The XML File

Let us first look at a typical XML file filled with data. The file has a list of Books, put together using XML attributes, tags and nested tags.

Note: The tags are case sensitive and you should use it carefully in your program.

Here's the file ... library.xml. You can open file to view it. Copy the contents of the file and save it in your computer and name it as library.xml, because I am using the same file name in my example here. You can change the name of the file according to your choice later.

Extract Data from XML

After creating the XML file (also called XML document), we will write JavaScript to read and extract data from the file. The HTML DIV element is a lightweight container, so I decided to use a DIV element to display the XML data on my web page.

Tabular format

I want to display data in tabular format with couple of columns. The columns will show the Bookname and Category respectively.

To show data in tabular formats (i.e. in two columns), we need to use two more DIV elements inside the main DIV, which will serve as a container. I am using CSS to place both the DIV elements side-by-side.

The Markup with the Script
<head>
    <style>
        #books {
            width: 390px;
            text-align: center;
            border: solid 1px #000;
            overflow: hidden;
        }
        #books div {
            width: 180px;
            text-align: left;
            border: solid 1px #000;
            margin: 1px;
            padding: 2px 5px;
        }
        .col1 { float: left; clear: both;}
        .col2 { float: right; }
    </style>
</head>
<body>
    <div id="books"></div>
</body>

<script>
    const oXHR = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP');

    function reportStatus() {
        if (oXHR.readyState == 4)       //  request completed.
            showTheList(this.responseXML);      // Now show the data.
    }

    oXHR.onreadystatechange = reportStatus;
    oXHR.open("GET", "../../library/library.xml", true);      
        // true = asynchronous request (desirable), false = synchronous request.
    oXHR.send();

    function showTheList(xml) {
        // The parent DIV element.
        let divBooks = document.getElementById('books');

        // The xml tag name.
        let book_List = xml.getElementsByTagName('List');

        for (let i = 0; i < book_List.length; i++) {

            // Create child DIVs inside parent DIV.
            let divLeft = document.createElement('div');
            divLeft.className = 'col1';
            divLeft.innerHTML = book_List[i].getElementsByTagName("BookName")[0].childNodes[0].nodeValue;

            let divRight = document.createElement('div');
            divRight.className = 'col2';
            divRight.innerHTML = book_List[i].getElementsByTagName("Category")[0].childNodes[0].nodeValue;

            // add child to parent.
            divBooks.appendChild(divLeft);
            divBooks.appendChild(divRight);
        }
    };
</script>
Try it

You may also like this... How to import XML from URL into Google Sheet using Custom Format

Here's the output.

Extract Data from XML using JavaScript

Also, if you want you can read and write XML Data using Asp.Net C# and Vb.Net

What's inside the Code?

Once the web page has loaded, it will make an XML request using http, which means it is asking for an XML file. We are using the XMLHttpRequest object and other members to make this request.

XMLHttpRequest Object

This object is one of the key features of Ajax. We can use XMLHttpRequest and its properties with many client languages like JavaScript, JScript and other server side languages, to communicate with XML files and its data. We can transfer and manipulate data from various sources in the web server using http.

onreadystatechange Property

Sets or retrieves the event handler for asynchronous requests. onreadystatechange property was first introduced in IE 7.

readyState Property

This readyState property will define the current state of request operation or the request made by XMLHttpRequest object.

Values of readyState Property

State

0
1
2
3
4

Description

Uninitialized. Not yet initialized, but an object is created.
The request has been setup. The object is created, send method not yet called.
We have sent a request.
The sent request is still in process.
The request is complete and ready to process further.

The open() Method

We must initialize the XMLHttpRequest object through the “open” method. This method takes five parameters. However, we have used three parameters in our example.

Syntax

open ( Method, URL, Asynchronous, UserName, Password )

You can read more about the open() method here.

The send() Method

Call this method to send an http request. The "send" method accepts only one parameter called the data, and we are not using it.

Syntax

send ( data )

Conclusion

XMLHttpRequest object with AJAX has made web developing a boon for developers and at the same time benefited the users due to the Asynchronous processing capabilities of data, quickly. Though the name suggests XML, we can use this object and its properties to extract data from other sources like HTML or plain text.

← PreviousNext →