Hi, I have tried to fetch xml content using XmlHttpRequest() using jquery. It's fine in Firefox, nut the content are not loading in IE6.0.
Kindly help me to resolve this issue. following is my code! $(function() { $('#update-target a').click(function() { $.ajax({ type: "GET", url: "labels.xml", dataType: "xml", success: function(xml) { $(xml).find('label').each(function(){ var id_text = $(this).attr('id') var name_text = $(this).find('name').text() $('<li></li>') .html(name_text + ' (' + id_text + ')') .appendTo('#update-target ol'); }); //close each( } }); //close $.ajax( }); //close click( }); //close $(