mouse over pop ups

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

How can I achieve a pop up box which is activated by mouse over . The pop up
disappears when the mouse is moved away

best regards

Paul
 
If you are looking for something like a tooltip, you can add a title
attribute to any HTML anchor like so

<a href="mypage.htm" title="Here is some text to describe it">mypage.htm</a>

Opening a true pop-up window is problematic because a lot of users now have
pop-up blockers. It is also difficult to control a pop-up window and a lot
of users will also receive an error when the pop-up is closed
programatically. Best bet is to try the title attribute of the link, though
right now I think this only works with IE>

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 
Back
Top