Sorry, my simplification removed the WIDTH parameter in the table cell.
This seems to be the key. I've tested the page with the WIDTH added and the problem is back. Complete page as below. First move the cursor into the cell but not on the text, then move over the text. (Use ESC to clear the alert so you don't have to move the mouse out of the cell).
<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
function rollIn(menu1item) {
document.getElementById(me
alert("Rolled in!");
}
function rollOut(menu1item) {
document.getElementById(me
alert("Rolled out!");
}
</SCRIPT>
</HEAD>
<BODY>
<TABLE BORDER="0" CELLSPACING="1" CELLPADDING="0" BGCOLOR="#000000"> <TR> <TD ID="welcome" BGCOLOR="#DDDDDD" ALIGN="CENTER" WIDTH="150"
onMouseOver="rollIn('welco
onClick="location.href='we
STYLE="cursor:pointer;"><B
<TD ID="products" BGCOLOR="#DDDDDD" ALIGN="CENTER" WIDTH="150"
onMouseOver="rollIn('produ
onClick="location.href='pr
STYLE="cursor:pointer;"><B
</TR>
</TABLE>
</BODY>
Main Topics
Browse All Topics





by: dbrittPosted on 2005-10-14 at 17:28:39ID: 15089836
Your "simplified" snippet works beautifully ;)
Show us the not simplified version ^^