Skip to content

cesararevalo/jquery.query-yql

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

TITLE

jQuery Plugin: Query YQL - version 0.3

DESCRIPTION

Query YQL simply.

Usage

Query YQL:

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

Query YQL (full):

var statement = "select * from feed where url='http:https://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:https://example.com/' and xpath='https://h1'";
$.queryYQL(statement, "xml", function (data) {
  // do something with "data".
});

Query YQL with Open Data Table:

var statement = "select * from twitter.user.timeline where id='hell2u'";
$.queryYQL(statement, "all", function (data) {
  // do something with "data".
});

Query YQL with Open Data Table (custom URL):

var statement = "select * from twitter.user.timeline where id='hell2u'";
$.queryYQL(statement, "http:https://example.com/tables.env", function (data) {
  // do something with "data".
});

LICENSE

Copyright (c) 2009 Kyo Nagashima [email protected]
This library licensed under MIT license:
http:https://opensource.org/licenses/mit-license.php

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%