10.09.2018, 10:10
(This post was last modified: 10.09.2018, 10:11 by Erwin van der Zwart.)
Hi,
I use custom JS for this, give the image a custom class 'weather' and use this js script where 40/1/15 = object with URL
BR,
Erwin
I use custom JS for this, give the image a custom class 'weather' and use this js script where 40/1/15 = object with URL
Code:
$(function(){
if (typeof grp != 'undefined') {
grp.listen('40/1/15', function(object, state) {
$('.weather').find('img').attr('src', object.value)
}, true);
}
});
Erwin