I'm reading the contents of an XML perfectly with FF but IE doesn't load the 
contents of the XML, everything seems to be ok, can somebody tell me what's 
wrong?

        var xml = $.ajax(
        {
            type: "GET",
            url: xmlFile,
            dataType: "xml",
            success: function(xml) 
            {
                total = xml.getElementsByTagName("item").length;
                for(x=0;x<total;x++)
                {
                    title[x] = 
xml.getElementsByTagName("title")[x].firstChild.data;
                    desc[x] = 
xml.getElementsByTagName("desc")[x].firstChild.data;
                };
            }
        });


      

Reply via email to