Ti ringrazio dell'appunto
(di tutte le parole che ci sono dovevo proprio
sceglierne una riservata !)
ma PP it doesn't work yet.

Seguendo il tuo appunto
ho messo al posto di links t
ma rpp non funzia e non capisco
che caspita c'è che non va
<script language="JavaScript" type="text/JavaScript">
var req = null;
function processReqChange() {
if (req.readyState == 4 && req.status == 200 ) {
xml= req.responseXML.documentElement;
/* Dichiaro t global */
t= new Array();
var item= xml.getElementsByTagName('item');
for(var i=0;i<item.length;i++){
t[i]= new Array();
for(var y=0;y<item[i].childNodes.length;y++){
if(item[i].childNodes[y].tagName=='id' || item[i].childNodes[y].tagName=='title'){
t[i].push(item[i].childNodes[y].firstChild.data);
}
}
}
}
/* OK */
alert(t);
}
function loadUrl( url ) {
if(window.XMLHttpRequest) {
try { req = new XMLHttpRequest();
} catch(e) { req = false; }
} else if(window.ActiveXObject) {
try { req = new ActiveXObject('Msxml2.XMLHTTP');
} catch(e) {
try { req = new ActiveXObject('Microsoft.XMLHTTP');
} catch(e) { req = false; }
} }
if(req) {
req.onreadystatechange = processReqChange;
req.open('GET', url, true);
req.send('');
}
}

function test()
{
/* Error t is not defined */
alert(t);
}
loadUrl('admin/xml/items.xml');
window.onload=function(){
test();
}
</script>
</head>

<body>
<body>

</body>
</html>

Ti posto il file xml così
se ne hai voglia puoi fare delle
prove.


<?xml version="1.0" encoding="utf-8"?>
<items>
<item>
<id>1</id>
<title>Title uno</title>
<author>Whisher</author>
<description>Description</description>
<pubDate>1173625536</pubDate>
</item>
</items>