refactorthis / jquery.query-yql

jQuery Plugin: Query YQL simply.

Home Page:http://hail2u.github.io/jquery.query-yql/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jQuery Plugin: Query YQL

Query YQL simply.

Usage

Query YQL:

var statement = "select * from feed where url='http://example.com/rss'";
$.queryYQL(statement, function (data) {
  // do something with "data".
});

Query YQL (full):

var statement = "select * from feed where url='http://example.com/rss'";
$.queryYQL(statement, "json", undefined, function (data) {
  // do something with "data".
});

Query YQL with JSONP-X:

var statement = "select * from html where url='http://example.com/' and xpath='//h1'";
$.queryYQL(statement, "xml", function (data) {
  // do something with "data".
});

Query YQL with Open Data Table:

var statement = "select * from google.translate where q='This is a test.' and target='ja'";
$.queryYQL(statement, "all", function (data) {
  // do something with "data".
});

Query YQL with Open Data Table (custom URL):

var statement = "select * from example.table where q='foobar'";
$.queryYQL(statement, "http://example.com/tables.env", function (data) {
  // do something with "data".
});

LICENSE

MIT: http://hail2u.mit-license.org/2009

About

jQuery Plugin: Query YQL simply.

http://hail2u.github.io/jquery.query-yql/