i'm tring to make something that when you put your mouse over something, stuff apears below it. the problem is though is that i can't view the stuff im hiding.
here's the code.
any ideas?
here's the code.
| Code: |
|
<script language="javascript"> function show_div(id) { document.getElementById(id).style.visibility = "visible"; } </script> ....... <td align='center'><a href='test.htm' id='reguser' onmouseenter='javascript:show_div(d22)'> 22 </a><br><div id='d22' style='visibility:hidden;'><h4>Todays Work</h4></div></td></tr> |
any ideas?
