Hi guys, I’m new to wix, but trying to get a site up and running.
I’ve made a simple on hover effect for a button, that shows an iframe containing a blog post which works great in the preview, but when I publish the site it just isn’t there - it looks like the ids change to something completely different, but I’m not sure what to do about that?
Code below:
export function bahamas_mouseIn(event) {
// This function was added from the Properties & Events panel. To learn more, visit http://wix.to/UcBnC-4
// Add your code for this event here:
$w("#bahamaspost").show()
}
export function bahamas_mouseOut(event) {
// This function was added from the Properties & Events panel. To learn more, visit http://wix.to/UcBnC-4
// Add your code for this event here:
$w("#bahamaspost").hide();
}
Any help most appreciated!
Cheers