TESTED-CODE ----> it works fine for me!
$w.onReady (function() {
setTimeout(() {
$w("#image1").show("FadeIn");
}, 10000 );
})
The code is also not doing what you describe!
It is setted to show an IMAGE and not a BOX!
$w("#image111").show("FadeIn");
Which element do you wanna to show after the delay-time?
- An html-iFrame?
$w('#html1').show('fade')
- CONTAINER-BOX?
$w('#box1').show('fade')
- IMAGE? (already done by you…)
$w("#image111").show("FadeIn");