Expanding Menu

G

Guest

I'v gathered info from newsgroups but I'm unable to create a menu that
exapnds when hovering the mouse over an item on a menu bar. Any suggestions
would be greatly appreciated. Front page 2002

<head>
<style type="text/css">
menu {position: absolute ; visibility: hidden ;}
</style>

<script type="text/javascript">
function showmenu(elmnt)
{ document.all(elmnt).style.visibility="visible" }

function hidemenu(elmnt)
{ document.all(elmnt).style.visibility="hidden" }
</script>
</head>

<body>
<div>
<table width="100%" border>
<tr>
<td onmouseover="showmenu('links')" onmouseout="hidemenu('links')">
<b>External Links</b><br>
(Scroll down)<br>
<table id="links" class="menu" width="100%" border>
<tr>
<td>
<a href="http://www.yahoo.com" target="_top">
(Yahoo)</a>
</td>
</tr>

Repeat the row between and including <tr> and </tr> for each menu
item, changing the content as needed

</table>
</td>
</tr>
</table>
</div>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top