tengo el siguiente script para leer mi XML:
Código Javascript:
Ver original
$(document).ready(function () { $.ajax({ type: "GET", url: "books.xml", dataType: ($.browser.msie) ? 'text' : 'xml', success: recon }); }); function recon(data) { var xml; if(typeof data == 'string'){ xml = new ActiveXObject('Microsoft.XMLDOM'); xml.async = false; xml.loadXML(data); } else { xml = data; } xmlParser(xml); } function xmlParser(xml) { $('#load').fadeOut(); $(xml).find("Book").each(function () { $(".main").append('<div class="book"><div class="title">' + $(this).find("Title").text() + '</div><div class="description">' + $(this).find("Description").text() + '</div><div class="date">Published ' + $(this).find("Date").text() + '</div></div>'); $(".book").fadeIn(1000); }); }
Estoi haciendo el script desde un ejemplo que encontre por internet pero adecuandolo a mis necesidades... el caso es que funciona en firefox y internet explorer... pero en chrome se quena cargando el contenido... se atasca ahi.
¿Alguna idea?