HI all,
I use jQuery to parse my xml responses.
I have this xml :
just to complement, i you use $.get:
$.get($('file.xml').val(),{ } , doSomethingWithData);
function doSomethingWithData(data) {
$(data).find("marker").each(function() {
var marker = $(this);
alert(marker.attr("lat"));
});
here tpicall used request.responseXML is the data in this case, and you have to encapsulate it in $(data) in order to work (this make me break the head about 3 hours ;S)
// alert(markerh);
}