Skip to content

Latest commit

 

History

History
executable file
·
21 lines (16 loc) · 815 Bytes

README.markdown

File metadata and controls

executable file
·
21 lines (16 loc) · 815 Bytes

#jQuery xml2json Build Status Deps Status

NPM

A simple jQuery plugin that converts XML data, typically from $.ajax requests, to a valid JSON object.

Here's a simple usage example:

$.ajax({
    url: 'data/test.xml',
    dataType: 'xml',
    success: function(response) {
        json = $.xml2json(response);
    }
});