Hi all, I'm new to JQuery, I have a dynamic side menu (links have the class "channels") and when the mouse goes over any of the links in the side menu, I want a div that has an image and some text to appear next to each link, I've tried using many plugins but nothing worked until now.
Here is the html for the side menu, I want each div with the class "tooltip" to appear once the mouse is over
<a class="channels" href="#"><img src="image path" alt="" /></a>
<div class="tooltip">this is a tootltip div to the first channel</div>
<div class="sep"><!-- --></div>
<a class="channels" href="#"><img src="image path" alt="" /></a>
<div class="tooltip">this is a tootltip div to the second channel</div>
<div class="sep"><!-- --></div>
<a class="channels" href="#"><img src="image path" alt="" /></a>
<div class="tooltip">this is a tootltip div to the third channel</div>
I would really appreciate it if someone could help me solve this problem.
Thanks