Using jQuery to load an XML file

Using jQuery to load an XML file

Hello,

I'm trying to load an xml file with jQuery but it doesn't seem to work. This is my code, I made it very simple for testing, but it doesn't work.

  1. var test = "./test.xml";
  2. $.get(
  3. test,
  4. function(data) {
  5. $('#textarea').text(data);
  6. }
  7. );
I just don't know how to get the data of an xml file, does the $.get method not work with xml? When I try it with an .html file it works.

Regards,
Bart