Whats the rollover text on an image called?
You know, when you hold your mouse over an image for a while and that little text box comes up.
5 Answers
it is called a "tooltip"
0Yes, "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="" title="this is the tooltip"/>It's called a tooltip.
2Is this in HTML? If so it is the title attribute ie <img src="x.jpg" title="tooltip"/>
Correction: A tooltip is when a balloon appears and gives the user a bit of information about a task they are about to perform, traditionally associated with an "i" icon or "?" a question mark icon. Rollover or mouseover text is the text that appears for HTML hyperlinked text and images and was originally created for browsers that may be unable to publish photos and gives users context to what is being shown without seeing the image.