Forum Moderators: open
When you hover over something (without clicking), a window pops up (similar to a tooltip), but it might have an image enlargement, or a small formatted page of information. I've even seen some that had scroll bars for long pages.
What is this called?
Basically one needs to toggle the value of CSS
displayproperty (to 'block' or 'none') that belongs to an element with the 'popup' content. That can be triggered by either the
:hoverpseudo-class (in CSS) or a
onmouseoverevent handler in JavaScript.
I've seen it used very productively, though. There's a stock photography website that displays a screen of 100px thumbnails, and it will pop up a 400px image if you hover over the thumbnail. This is SO much faster than having to click on the thumbnail and then go back to the previous page.