views:

83

answers:

1

I'm trying to get a tooltip to remain visible on mouseover. It works when you mouseover the first time. But try to mouseout, then mouseover another link and mouseover that tooltip. It will fade.

Check out the code on jsFiddle. Would love to know what I'm doing wrong here.

http://jsfiddle.net/6FpM8/7/

A: 

Try this

<a class="mylink" id="1" href="#" title="hey" >Test</a>
<a class="mylink" id="2" href="#" title="hey" >Test</a>
<a class="mylink" id="3" href="#" title="hey" >Test</a>

Just set the title via the html tag and not the JS, that worked in my Fire Fox.

Wolfy87
I'm not sure this is answering the question.
Josh Smith
Im just saying that setting the title within the html tag rather than with your javascript fixed it. It was working perfectly for me.
Wolfy87