jQuery not processing Euro Bank XML

jQuery not processing Euro Bank XML

hi. I am just trying to retrieve a simple XML file located on that address: http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml

I am trying:

  1.  $.ajax({
  2.      type: "POST",
  3.      url: "http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml",
  4.      dataType: "xml",
  5.      success: function(xml) {
  6.              alert(xml);
  7.          });
  8.      }, error: function(err) {
  9.         alert(err);
  10.      }
  11.  });
 but it's not returning nothing. sometimes, 200 or 206 HTTP error.
 Anyone can help me?