For those of you who like jQuery but cannot find any sensible way of interacting with JSON (Java Object Notation), here is a solution for you.

jQuery

I come up with this solution while developing several GNUCITIZEN application, including the latest XSSDB and Backframe.

http://www.gnucitizen.org/blog/jquery-json/jquery.json.js

In order to call JSON you have to do the following:

$.json('http://path/to/json?callback={callback}', function yourFunction () {
  [your code here]
});

As you can see, everything is very jQuery like so you shouldn’t have any problems.