algo asi?
modifica nomas la url de jquery y la url del xml
Código HTML:
<html>
<head>
<title>Ejemplo</title>
<script src="jquery.js" type="text/javascript"></script>
</head>
<script type="text/javascript">
var name = new Array();
$( function (){
$.ajax({
type: "GET",
url: 'xml.xml',
dataType: "xml",
success: function(xml) {
$(xml).find('usuario').each(function(i, val){
name[i] = new Array(2);
name[i][0] = $(val).attr('id');
name[i][1] = $(val).attr('nombre');
});
}
});
$("a").click( function (){
for (i = 0; i < name.length; i++){
alert("ID "+name[i][0] +" Nombre: "+name[i][1]);
}
});
});
</script>
<body>
<a href="#" >ver</a>
</body>
</html>