up vote 0 down vote favorite
1
share [g+] share [fb]

You know, when you hold your mouse over an image for a while and that little text box comes up.

link|improve this question

feedback

4 Answers

up vote 7 down vote accepted

it is called a "tooltip"

link|improve this answer
thanks (fifteen) – Petey B Aug 19 '09 at 15:43
feedback

Yes, "tooltip".

You can get one over images on a web page by adding a title attribute. This is dependent on implemention in the browser, but it's pretty widely adopted

<img src="http://cdn.sstatic.net/superuser/Img/wmd-buttons.png" title="this is the tooltip"/>

link|improve this answer
1  
As a side note, sometimes browsers display a tooltip based on the alt text (the value of the alt attribute); which is a standard for when a browser cannot display the image, the alt text is shown. – T Pops Aug 19 '09 at 16:17
feedback

It's called a tooltip.

link|improve this answer
Sorry for the duplicate; he posted a few seconds before me. I don't really want to delete though; since I included a Wikipedia link. – DLH Aug 19 '09 at 15:44
I gave you a +1 for including the link. :) – IPX Ares Aug 19 '09 at 15:53
Thanks! I just returned the favor. – DLH Aug 19 '09 at 15:56
feedback

Is this in HTML? If so it is the title attribute ie <img src="x.jpg" title="tooltip"/>

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.