In the qooxdoo playground there is a YQL binding sample. I want to see what data comes back from querying the URL.
How can I modify this code:
var delegate = {manipulateData : function(data) {
return data.query.results.item;
}};
so that I can view the return data? I've tried this.debug(data)
and pressing F7 but I dont see any data there.