http://docs.jquery.com/Specifying_th..._AJAX_Requests
Código javascript
:
Ver original$.ajax({
url: "provincias-googlemap.php",
dataType: "xml", /* * * * */
success: function(xml){
$(xml).find("provincia").each(function() {
alert($(this).attr("longitud"));
});
}
});
"It's important that the server handling the request sends the right MIME type in the response (eg. xml as "text/xml"). That is, if you specify the $.ajax dataType option to be "xml", make sure your server sends content with the "text/xml" MIME type."
("Es importante que el servidor que realiza la petición devuelva el tipo MIME correcto en la respuesta. Es decir, si especificas en la opción dataType de $ajax que sea "xml", asegúrate de que el servidor devuelve el contenido con el tipo MIME "text/xml".)