yql / jquery.query-yql forked from hail2u/jquery.query-yql

Query YQL simply.

This URL has Read+Write access

name age message
file README.md Thu Jul 09 13:21:24 -0700 2009 support YQL JSONP-X [hail2u]
file jquery.query-yql.js Thu Jul 09 13:21:24 -0700 2009 support YQL JSONP-X [hail2u]
file jquery.query-yql.min.js Thu Jul 09 13:22:54 -0700 2009 update jquery.query-yql.min.js [hail2u]
file test.html Thu Jul 09 13:21:24 -0700 2009 support YQL JSONP-X [hail2u]
README.md

TITLE

jQuery Plugin: Query YQL - version 0.2

DESCRIPTION

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 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".
});

LICENSE

Copyright (c) 2009 Kyo Nagashima kyo@hail2u.net
This library licensed under MIT license:
http://opensource.org/licenses/mit-license.php