This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
yui-yql /
| name | age | message | |
|---|---|---|---|
| |
LICENSE | Mon Sep 14 09:40:20 -0700 2009 | |
| |
README.textile | Tue Aug 18 15:25:27 -0700 2009 | |
| |
docs/ | Thu Oct 01 20:57:17 -0700 2009 | |
| |
tests/ | Thu Oct 01 20:43:25 -0700 2009 | |
| |
yql-min.js | Thu Oct 01 20:43:25 -0700 2009 | |
| |
yql.js | Thu Oct 01 20:43:25 -0700 2009 |
README.textile
YQL sugar for YUI3
YUI().use('yql', function(Y) {
//Using events
var q1 = new Y.yql('select * from github.user.info where (id = "davglass")');
q1.on('query', function(r) {
//Do something here.
});
q1.on('error', function(r) {
//Do something here.
});
//Or the callback approach
new Y.yql('select * from github.user.info where (id = "davglass")', function(r) {
//Do something here.
r.query; //The result
r.error; //The error message
});
});







