Hi everyone,
I’m a newbie to coding and have some really basic simple questions.
I have hidden a strip containing a hoverbox on my mobile site on all my pages except on my homepage, it works great, however when i go back to my homepage after browsing my site it does not load unless i refresh my browser.
any help on this would be great
Here is the code i have in my other pages:
import wixWindow from ‘wix-window’;
$w.onReady( function () {
if (wixWindow.formFactor === “Mobile”){
$w(“#column5”).hide();
$w(“#column5”).collapse();
And here is what i have tried on my homepage:
import wixWindow from ‘wix-window’;
$w.onReady( function () {
$w(“#columnStrip5”).show();
$w(“#hoverBox1”).show()
}
) ;