Parsing xml with jQuery in IE6/7 issue
Posted
by Alexander Corotchi
on Stack Overflow
See other posts from Stack Overflow
or by Alexander Corotchi
Published on 2010-03-11T18:27:11Z
Indexed on
2010/03/11
18:29 UTC
Read the original article
Hit count: 205
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);
});
}
});
I can't understand what is wrong !
Thanks
© Stack Overflow or respective owner