ich finde das Wetter Plugin
"Mein" Code sieht derzeit so aus:
<script type="text/javascript">
var weatherProperties = 'lat=55&lon=15.2&color=#FFFFFF&text-color=#FFFFFF';
// initial load
document.getElementById('embedweather').src = 'http://forecast.io/embed/?ts=' + (Date.now()) + '#' + weatherProperties;
// refresh
var weatherRefresh = setInterval(function() { document.getElementById('embedweather').src = 'http://forecast.io/embed/?ts=' + (Date.now()) + '#' + weatherProperties; }, 1800000);
</script>
<iframe id="embedweather" src="#" style="margin: 0; padding: 0; border: none; width:800px; position:relative; top:-50px; overflow:visible; margin-bottom: -70px; height: 500px;"></iframe>
Blöd daran ist, es ist nicht in °C. Hat einer vielleicht eine Idee, wie man das eindeutschen könnte?