Summary | IE still displayed alt tag along with tooltip |
Queue | Horde Base |
Queue Version | 3.1.1 |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | |
Requester | urkle (at) outoforder (dot) cc |
Created | 04/15/2006 (7055 days ago) |
Due | |
Updated | 04/15/2006 (7055 days ago) |
Assigned | |
Resolved | 04/15/2006 (7055 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
explicitly specified.
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ IE still displayed alt tag along with tooltip
Queue ⇒ Horde Base
buttons along with the IE rendered tooltip which grabs it's content
from the img alt tag.
To fix, a title of "" needs to be added to the img tag. I had to do
this with my own code that does fancy tooltips.
so
<img alt="Reload" src="/themes/graphics/reload.png"/>
changed to
<img alt="Reload" title="" src="/themes/graphics/reload.png"/>
will yeild the expected result in all browsers.