I cannot figure this out at all.
my current json results the following using console.log(json)
I was wondering if someone could help me retrieve the Condition part?
EDIT
var geoFORECAST = 'http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20weather.forecast%20where%20woeid=%2726344339%27%20and%20u=%27c%27&format=json';
$.getJSON(geoFORECAST, function(json) {
console.log(json);
console.log(json.query.results.item.condition.text);
});