﻿$('document').ready(function () {
    var $scrpt = $('script').attr('src', 'http://free.worldweatheronline.com/feed/weather.ashx?q=96761&format=json&num_of_days=2&key=1cb5652fb8015257111511&callback=weatherCallback');
    $scrpt.attr('type', 'text/javascript');
    $scrpt.appendTo($('head'));
});
var ctr = 0;
function weatherCallback(data) {
    if (ctr++ < 1) {
        $('#weather').html(data.data.current_condition[0].temp_F + 'F | ' + data.data.current_condition[0].weatherDesc[0].value);
    }
}


