29.05.2020, 07:51
(This post was last modified: 29.05.2020, 07:53 by Erwin van der Zwart.)
Hi,
This is the original clean custom JS :
BR,
Erwin
This is the original clean custom JS :
Code:
$(function(){
grp.listen('1/1/1', function(object, state) {
if (state == 'value' && object.value == true ) {
$("#widget-1").removeClass("hide");
} else if (state == 'value' && object.value == false ) {
$("#widget-1").addClass("hide");
}
}, true);
});
Erwin