This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
univcloud/univcloud/templates/apps/weather.html

21 lines
535 B
HTML

<div id="{{ app_id }}" class="weather"></div>
<script>
$(function(){ //DOM Ready
$.simpleWeather({
zipcode: '',
woeid: '{{ location }}',
location: '',
unit: 'c',
success: function(weather) {
html = '<h2>'+weather.city+'</h2>';
html += '<img width="125px" src="'+weather.image+'">';
html += '<p>'+weather.temp+'&deg; '+weather.units.temp+'</p>';
$("#{{ app_id }}").html(html);
},
error: function(error) {
$("#{{ app_id }}").html('<p>'+error+'</p>');
}
});
});
</script>