function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
AnchalGoelAnchalGoel 

Image tag for helptext

Is it possible to use the <Image> tag to display a icon, which displays helptext when the user hovers over it (using the MouseOver event)? If so, does anyone know how to do that?
harlequinharlequin
Just use the title property of the image, you can use the alt property but Firefox won't show it.
Code:
<apex:image url="/img/sfa_logo_w09.gif" title="Image tooltip text"></apex:image>