HoverBox inside a repeater

Thanks! Wish it were that easy, though… Text box (‘biotext’) is set to hidden on load.
This is the code I’m using, probably not sufficient? Or do I need to add another type of element, like a box or a button or something?

export function biotext_mouseIn(event, $w)
 {
 //Add your code for this event here: 
    $w('#biotext').show();
}

export function biotext_mouseOut(event, $w)
 {
 //Add your code for this event here: 
    $w('#biotext').hide()
}