$(document).ready(function () {
$.simpleWeather({
zipcode: '',
woeid: '2459115',
location: '',
unit: 'f',
success: function (weather) {
//Here is where my code to generate the HTML Goes
//However it was causing issues when displaying on the page
$("#weather").html(html);
},
error: function (error) {
$("#weather").html('' + error + '');
}
});
});