Hi,
I have some problem with parsing XML in Ie6/7(original 7 no compatible mode). On Another normal browsers it works.
Jquery code:
$.ajax({
type: "GET",
url: "test.xml",
dataType: "html",
success: function(xml) {
$(xml).find('quoteresult').each(function(){
var bid = $(this).find('bid').text();
alert(bid);
});
}
});
When I do alert(xml);
I see all XML file even in IE6, but alert($(xml).html());
, In ie6 it is empty , in FF it works !!
I can't understand what is wrong !
Thanks