Skip to content
This repository has been archived by the owner on Mar 22, 2019. It is now read-only.

hail2u/jquery.query-yql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jQuery Plugin: Query YQL v0.4.1

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