Picture / Box must collapse if there is no image, but I can not get my code to work. see
$w.onReady( function () {
//TODO: write your page related code here…
if ($w(‘#image16’)) {
$w(“#box1”).expand();
$w(“#image16”).expand();
} else {
$w(“#box1”).collapse();
$w(“#image16”).collapse();
}
});
what am I doing wrong