Ver Mensaje Individual
  #10 (permalink)  
Antiguo 14/01/2015, 15:00
grossbergsteven
 
Fecha de Ingreso: diciembre-2014
Mensajes: 69
Antigüedad: 9 años, 10 meses
Puntos: 2
Respuesta: AJAX JQUERY colaboración

Quisiera aunque sea poder visualizar un atributo, con solo uno me basta estoy utilizando este y nada
Código HTML:
Ver original
  1. $(document).ready(function(){
  2.     $("#dvContent").append("<ul></ul>");
  3.    $.ajax({
  4.       type: "GET",
  5.       url: "logros.xml",
  6.       dataType: "xml",
  7.      success: function(xml){
  8.       $(xml).find('juego').each(function(){
  9.         var name = $(this).att('nombre').text();
  10.        
  11.         $("<li></li>").html(name).appendTo("#dvContent ul");
  12.       });
  13.     },
  14.     error: function() {
  15.       alert("An error occurred while processing XML file.");
  16.     }
  17.     });
  18.   });

ayuda por favor