Is there any way of getting the weather forecast from woeid in javascript?
I tried using rss feed of yahoo, but couldn’t get it to work. here is my code
var url = "http://weather.yahooapis.com/forecastrss?w=" + encodeURIComponent('WOEID here');
$.ajax({
url: url,
dataType: 'jsonp',
jsonpCallback: function(data) { console.log(data); },
success: function(data) { alert("success"); }
});
Any suggestions?
Here’s the simplest way to get the info you want using jQuery and YQL:
The query in the YQL console…
The JavaScript code in jsfiddle…