Below is a snippet of code from a lengthy javascript procedure that builds a new table. It puts an "onmouseove r" function call on one of the TD elements. This code works in IE6, Firefox, and Safari. But in IE7, the onmouseover function does not seem to get called when I just move the mouse over the TD. If, however, I actually click the mouse while over the TD, the function does get invoked. Because of this, it seems to me that the setup of the onmouseover event must be working (or else the function wouldn't get called at all), but for some reason just "mousing over" the TD doesn't trigger the event.
Is this some obscure IE setting? Or something else? Help, anyone? Thanks.
...[code=javascript]
nameTD.onmouseo ver = function() {mouseOverTeam( shortteam, this);}
nameTD.onmouseo ut = function() {mouseOffTeam(s hortteam, this);}[/code]
...
Is this some obscure IE setting? Or something else? Help, anyone? Thanks.
...[code=javascript]
nameTD.onmouseo ver = function() {mouseOverTeam( shortteam, this);}
nameTD.onmouseo ut = function() {mouseOffTeam(s hortteam, this);}[/code]
...
Comment