I have a table that has some javascript that makes each td fade in and out as the mouse passes over the cell. On one particular td I want a little pop up window to display a quickie version of our HIPAA policy as the user passes over the td and for it to disappear when they move off it. I also want to keep the fade in and out. How do I do that?
Here is the code for the one td:
<tr>
<td class="tdred" onmouseover="fadeImg2(7)" onmouseout="fadeImgend2(7)" onclick="window.location=hippapolicy.html';" height="20">HIPAA</td>
</tr>
Thanks in Advance
Here is the code for the one td:
<tr>
<td class="tdred" onmouseover="fadeImg2(7)" onmouseout="fadeImgend2(7)" onclick="window.location=hippapolicy.html';" height="20">HIPAA</td>
</tr>
Thanks in Advance