quote:Originally posted by DNA.styx
Quick fix in place (for the image upload system only), cheers.
So what cross browser method is avaliable for image descriptions?
For description of the image use the title attribute in the <img> tag. And get rid of the <acronym> tags. Example:
<img src="http://example.com/example.gif" title="description of the image">
You may use it for most elements, not only images. It's also much cleaner, logical, and the code is smaller. I really don't know why to enclose the <img> tag with additional tags while the <img> may have the title. Almost all tags may have the title attribute, not only <acronym>.
quote:
HTML 4.01 Specification
The title attribute
This attribute offers advisory information about the element for which it is set.
Values of the title attribute may be rendered by user agents in a variety of ways. For instance, visual browsers frequently display the title as a "tool tip" (a short message that appears when the pointing device pauses over an object). Audio user agents may speak the title information in a similar context.