Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
// v3.1.0
//Docs at http://simpleweatherjs.com
$(document).ready(function() {
$.simpleWeather({
location: 'Austin, TX',
woeid: '',
unit: 'f',
success: function(weather) {
html = '
'+weather.temp+'°'+weather.units.temp+'
'; html += '- '+weather.city+', '+weather.region+' '; html += '
- '+weather.currently+' '; html += '
- '+weather.wind.direction+' '+weather.wind.speed+' '+weather.units.speed+'
'+error+'
'); } }); });