PDA

View Full Version : Hover on descriptions


SoloX
01-19-2009, 12:07 AM
Hello:
When I hover my mouse on a thread title, it displays the part of the thread text in a popup box. I want to do the same thing for forum descriptions. I want to hide the forum descriptions but when someone hovers on say 'desription' it will pop up the forum description.

I have found some cool tooltips but I wanted to reuse the VB code. Any help would be appreciated.

-S

Dismounted
01-19-2009, 03:18 AM
That functionality is done using an attribute that is part of the (X)HTML standard. You can add the attribute "title" to an anchor tag, etc. to display the tooltip.
<a href="something.htm" title="Links to Something" />

SoloX
01-19-2009, 03:36 AM
that did the trick for me. Thank you!