Dav Glass![]()
Featured Item
This module adds a little sugar to YUI3 to make simple easy YQL queries.
It supports:
<script src="http://yui.yahooapis.com/3.2.0/build/yui/yui-min.js"></script>YUI({
//Last Gallery Build of this module
gallery: 'gallery-2011.03.30-19-47'
}).use('gallery-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
});
});| Subject | Author | Date |
|---|---|---|
| I Love Yahoo! Developer | hussien | 11/2/09 |
| gallery-yql and it's relationship to gallery-jsonp | Eric Ferraiuolo | 11/13/09 |
| Re: gallery-yql and it's relationship to gallery-jsonp | Dav Glass | 11/13/09 |
| Re: gallery-yql and it's relationship to gallery-jsonp | Eric Ferraiuolo | 11/13/09 |
| Re: gallery-yql and it's relationship to gallery-jsonp | Dav Glass | 11/13/09 |
| Re: gallery-yql and it's relationship to gallery-jsonp | Luke Smith | 02/8/10 |
| yql failing to load html | alexlebek | 04/17/10 |
| Re: yql failing to load html | Eric Miraglia | 04/17/10 |
| XML format | Marcel Duran | 08/7/10 |
| Re: XML format | Dav Glass | 08/8/10 |
© 2006-2013 Yahoo! Inc. All rights reserved.
All code on this site is licensed under the BSD License unless stated otherwise.
About This Site · Security Contact Info