View Full Version : Internet Explorer Tooltip
myyoungfamily
11-16-2005, 05:08 PM
Does anybody know how to eliminate the IE tooltip when mousing over images? I want to be able to put text in the "alt" tag for the search engines to pick up on, but I don't want that popping up on my viewers.
mwinter
11-16-2005, 07:05 PM
Does anybody know how to eliminate the IE tooltip when mousing over images?Include an empty title attribute:
<img alt="..." src="..." title="">
Mike
jscheuer1
11-16-2005, 07:34 PM
That will work for alt attributes being shown but, if you mean the imagetoolbar, then use:
<img galleryimg="no" src="some.jpg">
There is a meta tag that will disable this for the whole page but, it is a memory leaker, don't use it.
myyoungfamily
11-16-2005, 09:31 PM
So, if I use an empty "title" tag that will do the trick?
Thanks for the meta tag tip, I've been using that.
jscheuer1
11-16-2005, 11:10 PM
So, if I use an empty "title" tag that will do the trick?
Yes, the title attribute has priority, if it is empty, nothing will be shown, even if the alt attribute is set. Most browsers only show the title, if any. Only IE, that I know of shows the alt ever, except for when an image is either missing or not being used by the browser, then the alt is what takes the place of the image on the page. That is what it was designed for.
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.