Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hail2u/jquery.query-yql

Query YQL simply.
https://github.com/hail2u/jquery.query-yql

Last synced: about 2 months ago
JSON representation

Query YQL simply.

Awesome Lists containing this project

README

        

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