With JavaScript
and HTML you can convert the data found in an xml file into an html
file and display that in the html file. It is easy to work with xml
data and display them in an html file using client side JavaScript.
_______________________________________________
The
code that performs the action of getting the xml file is written within
the <script> tag within the <head> tag of the html file.
The first thing in the code is to detect the type of browser the user
is using. Based on that, you have to create an object XMLHttpRequest
(for Mozilla browsers) and an ActiveXObject (for IE browsers).
Now the
next step is to check the readystate property and the status property
of that object and then work on the code. If the 'readystate' is 4 and
the 'status' is 200, then everything is fine.
Now you
can work with your xml data. Now open the xml file and send the data
to the span in the html file that will display the data. You can find
examples using JavaScript in many websites.