Yo para leer un xml con jquery utilizo este script, fijate si podes adaptarlo a tus necesidades.
Código Javascript
:
Ver original$(document).ready(function(){
//the variable to be appended here
$("#Autom").append("<ul></ul>");
});
$.ajax({
type: "GET",
url: "cars.xml",
dataType: "xml",
success: function(xml) {
}
$(xml).find('car').each(function(){
var Titles = $(this).find('Title').text();
var Manufacturers = $(this).find('Manufacturer').text();
$("<li></li>").html(Titles + "-" + Manufacturers).appendTo("#Autom ul");
});
error: function() {
alert("The XML File could not be processed correctly.");
}
});
Espero te sirva.
Saludos.