Ya modifique y no hace nada:
Código HTML:
Ver original<!DOCTYPE html>
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <link rel="stylesheet" href=""> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> $(document).ready(function(){
$("#Autom").append("
<ul></ul>");
});
$.ajax({
type: "GET",
url: "http://ws1.incasports.com/reporte/logrosdeporte.php?liga=nba",
dataType: "xml",
success: function(xml) {
}
$(xml).find('equipo1').each(function(){
var nombre = $(this).find('nombre').text();
var ref = $(this).find('ref').text();
$("
<li></li>").html(nombre + "-" + ref).appendTo("#Autom ul");
});
error: function() {
alert("The XML File could not be processed correctly.");
}
});