マウスポインタが別のdiv/id / aの中/上にあるかどうかを確認するにはどうすればよいですか?
^a href="#" onmouseover="showmenu('top_3_menu_1_1')">Option One</a>
function showmenu(elmnt)
{
document.getElementById(elmnt).style.visibility="visible";
}
function hidemenu(elmnt)
{
if mouse pointer is not in location A or B do something
}