Click to See Complete Forum and Search --> : text rollover
Janna
04-01-2003, 10:45 AM
The question would be:
Do you know of anyway to make text only a rollover? By this I mean, when you roll over the text a popup (like a definition for a word) would happen. Like an image alt tag, but text only?
Thank you
havik
04-01-2003, 10:50 AM
Here's something that'll work. Just change it a little to work with text only because it works with links right now.
http://javascript.internet.com/navigation/pop-up-link-with-description.html
Havik
Vladdy
04-01-2003, 11:25 AM
You can use title attribute with any element you need the pop up for (and with images as well!!! since alt poping up is IE only hack). If needed you can use span element to delimit a word you need the popup for:
some text <span title="info">word</span> more text.
If you want to get fancy see this:
http://klproductions.com:8080/KLToolTipsDemo.html
Janna
04-01-2003, 11:58 AM
THANK YOU SO MUCH! J