solidstudio / jQuery-xml2json

Simple jQuery plugin to convert XML to JSON.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#jQuery xml2json

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);
    }
});

About

Simple jQuery plugin to convert XML to JSON.