ajaxを使用して、いずれかのxml/テキストファイルからデータをフェッチできます。
テキストファイルにコンテンツが保存されている場合は、次のコードが機能します
サンプルコード
<script type="text/javascript">
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest){
xmlhttp=new XMLHttpRequest();
}else{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv").innerHTML= xmlhttp.responseText;
}
}
xmlhttp.open("GET","ajax_info.txt",true);
xmlhttp.send();
}
</script>
<div id="myDiv">Let AJAX change this text</div>
<button type="button" onclick="loadXMLDoc()">Change Content</button>
http://www.w3schools.com/Ajax/tryit.asp?filename=tryajax_firstでライブの例を見る
ajaxを使用してxmlデータを取得するためのサンプルを表示します。http://www.w3schools.com/Ajax/ajax_xmlfile.asp
ここからajaxについてさらに読むことができます