This is the example of an XML document and I want to access the value of the date that is with the name of fecDocto, how do I get that value?
For example, for the first element, see if this can help you:
$.get("Documentos.xml", function (xml) {
$(xml).find("ImgIdentOficialFrontal").each(function () {
var name = $(this).attr('name');
var fecDocto= $(this).attr('fecDocto');
alert("name:" + name + " / fecDocto: " + fecDocto);
});
});