Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/11/2008, 05:12
venkman
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Error Parser XML con jQuery en IE

http://docs.jquery.com/Specifying_th..._AJAX_Requests

Código javascript:
Ver original
  1. $.ajax({
  2.     url: "provincias-googlemap.php",
  3.     dataType: "xml", /* * * * */
  4.     success: function(xml){
  5.         $(xml).find("provincia").each(function() {
  6.             alert($(this).attr("longitud"));
  7.         });
  8.     }
  9. });

"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".)