Ver Mensaje Individual
  #4 (permalink)  
Antiguo 14/01/2015, 12:01
mauritosuarez
 
Fecha de Ingreso: octubre-2014
Ubicación: Buenos Aires
Mensajes: 278
Antigüedad: 10 años, 1 mes
Puntos: 12
Respuesta: AJAX JQUERY colaboración

Yo para leer un xml con jquery utilizo este script, fijate si podes adaptarlo a tus necesidades.

Código Javascript:
Ver original
  1. $(document).ready(function(){
  2. //the variable to be appended here
  3. $("#Autom").append("<ul></ul>");
  4. });
  5. $.ajax({
  6. type: "GET",
  7. url: "cars.xml",
  8. dataType: "xml",
  9. success: function(xml) {
  10. }
  11. $(xml).find('car').each(function(){
  12. var Titles = $(this).find('Title').text();
  13. var Manufacturers = $(this).find('Manufacturer').text();
  14. $("<li></li>").html(Titles + "-" + Manufacturers).appendTo("#Autom ul");
  15. });
  16. error: function() {
  17. alert("The XML File could not be processed correctly.");
  18. }
  19. });

Espero te sirva.

Saludos.
__________________
http://www.sp-vision.net