this should get you started on xml parsing..
var xml = '<root><text1>i am in text1</text1><text2>i am in text2</text2></root>';
$(xml)
.children()
.each(
function(){
alert(this.nodeName + ':' + $(this).text());
}
);
nodeName is the tag name in xml which you will use as id for the html .. the jquery text method will return the value of the xml node .. (text only)
to load the xml file use
$.get(
'/path/to/filename.xml',
function(){
/*runs on success, do the parsing here*/
},
'xml'
);