My main web page has two frames. menu and content frame. i would like to a drop down ment to drop over the menu frame into the content frame when a mouse go over the menu.
How can i when my code look something like this.
How can i when my code look something like this.
Code:
div id="menu_parent">Main Menu</div>
<div id="menu_child">
<a href="#">Item 1</a>
<a href="#">Item 2</a>
<a href="#">Item 3</a>
</div>
<script type="text/javascript">
at_attach("menu_parent", "menu_child", "hover", "y", "pointer");
</script>
Comment