Help for onReady function

@andreacattonar
You will have to TRANSFORM your CODE into another CODE-Technique…
Instead of using export-functions for elements on your page, you can do it another way…

AyDontLoss already showed you the first part of code you need, now all you have to do is to convert it a little bit…

$w.onReady(function () {console.log("Page READY!");
              
    $w('#YourElementID').onMouseIn((event)=>  {$w('#YourElementID').show('fade');});
    $w('#YourElementID').onMouseOut((event)=> {$w('#YourElementID').hide('fade');});
 
});

And next time → Please use CODE-Blocks to show your code…like this…