I have a page with two links. On each, I've attached a JavaScript onmouseover
event. I require a tooltip to be displayed when the mouse encounters a link, and require that it should not disappear until I point the mouse at the other link.
The problem is that I create table at runtime, and I want to display tooltips for the table cells as well. If only I could just write:
Response.Write("td onmouseover=tootip()").
...but sadly, it is not to be. So please, tell me: how can I attach mouseover
events to the cells of a dynamically-created table?