My XML Feed is at http://tinyurl.com/6wc6fel
I am using following code to read the XML
<script type="text/javascript">
$(document).ready(function () {
$.get("read.xml", function (data) {
alert('Load was performed.');
});
});
</script>
Since its nested, I want to display folllwing information of the < Hotel > Tag
a) StayDateRange(Start, End)
b) In tag read HotelName,Location
c) Address1, Address2
d) In tag read Url
e) In tag read HotelFrontImage Url
f) In tag NumberOfRooms>>Description
and so on.. how do i do it ?