Get weather from Yahoo with jQuery
问题 I'm using the Google API to get a user's location on this site. How would I go about getting the weather for that user from Yahoo or somewhere? UPDATE : Ok so I'm going with Yahoo, but I've never done an HTTP GET request before. Im using jQuery and the following code: function getWeather () { $.get("http://weather.yahooapis.com/forecastrss?w=2502265", function(data){ alert("Data Loaded: " + data); }); } However, the alert is only returning "Data loaded", and the rest is blank, so I'm doing