found this code on this website cant find the url but if I find it i will post it
The code is basically the same as the following.I want to be able to place links inside the tool tip I was wondering if there was a way i could do this. I don't know much programming and am trying to learn jquery.Thanks for your help in advance.
a.help{
position:relative; /*this is the key*/
z-index:24;
color:#fff;
text-decoration:none;
font-size:10px;
}
a.help:hover{
z-index:25;
text-decoration:underline;}
a.help span{display: none}
a.help:hover span{ /*the span will display just on :hover state*/
display:block;
position:absolute;
top:1.5em; left:1em; width:15em;
padding:5px;
height:15em;
border:1px solid #0cf;
background-color:#cff; color:#000;
text-align: justify;
float:left;
left:-13em;
}