Opened 10 years ago
Closed 10 years ago
#13320 closed bug (duplicate)
bug in IE8 when getting attr from XML data
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | git |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Using IE8, the following code breaks in 1.9.0 (but NOT in 1.8.2):
$.ajax({
type: "GET", url: "playerList.xml", dataType: "xml", success: function(xml) {
myXML = $(xml).find("playerList");
Create scene objects $(myXML).find("player").each(function() {
output($(this).attr("id"));
});
}
});
Note: See
TracTickets for help on using
tickets.
Duplicate of #13315.