Weird AJAX "206 Partial Content" Problem?

Weird AJAX "206 Partial Content" Problem?

Hello,

I'm trying to retrieve today's date on the Hebrew calendar via AJAX from hebcal.com's RSS feed.  It's a simple XML file, and here's the code I'm using:

$.ajax({
  success: function(data, textStatus, XMLHttpRequest) {
    console.log(data);
  },
  url: 'http://www.hebcal.com/etc/hdate-en.xml'
});

The problem is that it's coming back with an empty string and an HTML status of "206 Partial Content" in Firebug.  I've tried several different solutions but cannot seem to get the content.

Any ideas what I'm doing wrong?

Thanks,
-Nate