XML parsing

XML parsing

Jquery NOOB here so please be nice ;)

I have the following code whic loads the xml in FF but NOT IE - that always fails and I don't know why....

  $.ajax({
    type: "GET",
    url: "http://localhost/jargonterms.xml",
    dataType: "xml",
    success: function(xml)
    {     
      terms = $(xml).find('term');
      desc  = $(xml).find('description');
      highLight(document.getElementById('iContentHolder'));
    }
  }); //close $.ajax(


any pointers would be grand...[/code]