I am in need of a code to add to this script which would make the menu go away once a mouse-down is enacted.
<script type="text/javascript">
function toggle(MenuID) {
var menu = document.getElementById(MenuID);
if (menu.style.display == 'block') {
menu.style.display = 'none';
} else {
menu.style.display = 'block';
}
}
</script>
Anyone
P.S. Sorry if this is in the wrong forum.
Aqua-Soft Forums