An open API service indexing awesome lists of open source software.

https://github.com/mikeludemann/loadxml

A function for loading external XML files with callback methods
https://github.com/mikeludemann/loadxml

external-files url xml

Last synced: 6 days ago
JSON representation

A function for loading external XML files with callback methods

Awesome Lists containing this project

README

          

# loadXML

A function for loading external XML files with callback methods

## Example

```
loadXML("./your-data.xml", function(response) {

var data = response.responseXML;

console.log(data);

});
```