Danjojo schrieb:
Can anyone provide me a link of how to open an xml file using JQuery?
Try this:

$.ajax({
   url: "file.xml",
   dataType: "xml",
   success: function(xmlDocument) {
     $(xmlDocument).find(...).dosomeThing(...);
  }
});

http://docs.jquery.com/Ajax/jQuery.ajax#options

-- Jörn

Reply via email to