Mi działa, z tym XMLem co podałem:
<html>
<head>
<script type="text/javascript">
function loadXMLDoc(url)
{
var xmlhttp;
var txt,x,xx,i;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4 /*&& xmlhttp.status==200*/)
{
x=xmlhttp.responseXML.documentElement.getElementsByTagName("gra");
txt="<tr>";
xx=x[0].getElementsByTagName("nazwa");
{
try
{
txt=txt + xx[0].firstChild.nodeValue;
}
catch (er)
{
txt=txt + er;
}
}
document.getElementById('txtCDInfo').innerHTML=txt;
}
}
xmlhttp.open("GET",url,true);
xmlhttp.send();
}
</script>
</head>
<body>
<div id="txtCDInfo">
<button onclick="loadXMLDoc('Oczko.xml')">Sprawdź zawartość płyty </button>
</div>
</body>
</html>