Could someone tell me how to implement this scenario: when the mouse is on a link, an associated area will show up and some information will be displayed; when the mouse moves over it, the area disappears.
I know onmouseover is about javascript/html question, but I don't want to simply display some fixed thing when onmouseover event occurs. I want it to display something which have to look up from some table in database according to where the mouse is.
For example, I retrieve rows from movie table, columns include movie name, movie type, movie price, movie primary actor. These rows form a table. When mouse is over a movie primary actor in a table cell. I want a small window to show up and display a list of actors in this movie which I stored this list in another table. How could I achieve this implementation?
Thanks.