I've been searching for information on creating pop-up text through these forums for days, and it seems like the solution is an outside script.
This script was recommended here a few times:
Step 1. is very easy, but I don't quite get Step 2:
<a href="#" onmouseover="doTooltip(event,0)" onmouseout="hideTip()">Link 1</a><br><a href="#" onmouseover="doTooltip(event,1)" onmouseout="hideTip()">Link 2</a>
I don't quite understand what they are talking about.
What I want to do -
- I have a list of items.
- As a person mouses over each item, a paragraph of text pops up.
I'd appreciate it if anyone could enlighten me. (using baby steps!)
thanks!
This script was recommended here a few times:
Step 1. is very easy, but I don't quite get Step 2:
Step 2: Then, set up your links to contain the necessary onMouseover and out attributes. Use the following code as an example, where 0 and 1 refer to the image tooltip's index number in the script above that you wish to invoke :
Select All<a href="#" onmouseover="doTooltip(event,0)" onmouseout="hideTip()">Link 1</a><br><a href="#" onmouseover="doTooltip(event,1)" onmouseout="hideTip()">Link 2</a>
I don't quite understand what they are talking about.
What I want to do -
- I have a list of items.
- As a person mouses over each item, a paragraph of text pops up.
I'd appreciate it if anyone could enlighten me. (using baby steps!)
thanks!
Comment