Hello, here’s what I’m trying to do:
User hovers cursor over one image, a red box appears highlighting the item.
Here’s where I got to:
The box appears at mousein as expected, but it also appears on all the other items in the repeater. How do i fix this?
This is the code I have:
export function image2_mouseIn_1(event) {
//Add your code for this event here:
$w(“#box2”).show();
}
export function image2_mouseOut_1(event) {
//Add your code for this event here:
$w(“#box2”).hide();
}
Thank you.