Forum Moderators: open
The HTML:
<span onmouseover="showMenu('television')">Television Links</span>
And the javascript function:
function showMenu(pick_menu) {
menu_top = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop;
document.getElementById(pick_menu).style.top = menu_top - 270;
document.getElementById(pick_menu).style.visibility = "visible";
}
Am I using something specific to IE for this? Or are there differences in the DOM I'm not adjusting for?
Thanks for your help.