Do everything with javascript

Monthly Archives: July, 2009

A Javascript YQL client

The YQL API support the JSONP format which allow you to specify a Javascript function to handle the data (XML / JSON) return from the API. A normal JSON will return a string which is a javascript object like:
{key1:”value1″,key2:10.35}
While a JSONP will look like:
js_function({key1:”value1″,key2:10.35});
Which the return string from server will be a valid javascript function [...]