Hi folks,
Could someone confirm this please?
Using the following code, from jQuery 1.5.1:
- $.get(xml_file).success(function(data, textStatus, jqXHR)) {
- alert(data);
- }
The returned result seems to be:
On IE8
data is an "[object]"
On IE9
data is an "[object Document]
I guess it should always either be: "[object]" or: "[object Document]", not a mixture as this breaks code.
Regards,
Yomodo