$.get() returns different object type in IE8 and IE9

$.get() returns different object type in IE8 and IE9

Hi folks,

Could someone confirm this please?

Using the following code, from jQuery 1.5.1:
  1. $.get(xml_file).success(function(data, textStatus, jqXHR)) {


  2.       alert(data);
  3. }

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