Milonic provide full featured pull down web menus for some of the worlds largest companies
click here to see what it can do for you

Download Milonic DHTML Menu
Buy Milonic DHTML Menu

Back To Start Of Archive
Taken From The Forum: Help & Support for DHTML Menu Version 5+
Forum Topic: Click to view post
Last Updated: Saturday July 14 2012 - 06:07:55

tooltip: how to disable the IE hint on a link with alt tag?


Poster: Vince86
Dated: Tuesday September 5 2006 - 11:48:11 BST

Hi,
all is in the title:
how to disable the IE hint on a link with an alt tag?
I guess a css property but can't find whichone.
Thanks!
Vince


Poster: Ruth
Dated: Tuesday September 5 2006 - 18:29:03 BST

Hi,

This forum is for the Milonic Menu. To disable the Milonic Menu tooltip you'd just not put a call for the tip. If you are just talking in general you'll need to try a general forum such as an html forum, try going to ask or google and searching html help forums, you should get a lot of options.

Ruth


Poster: Vince86
Dated: Tuesday September 5 2006 - 23:12:46 BST

Hi,
the problem concerns the Milonic Tooltip implementation (I'm a registred user of the Milonic menu).
The problem is that I have both tooltips (IE and the milonic tooltip) when I use this code:

<a href="mylink.htm" onmouseover="showtip('my tooltip');" onmouseout=hidetip();><img src="myimage.gif" alt="theAltTag"/></a>

I already search on google but I didn't find the answer, the terms "alt" and "hint" are too popular to get valuable results.


Poster: Ruth
Dated: Tuesday September 5 2006 - 23:46:08 BST

Hi,

As far as I know the only way to disable both the alt tag text boxes and the title text boxes is to code them as alt="" and not put anything into them. Their purpose is to help the impaired and or those who have images turned off. For those with readers, the reader looks for the alt tag and tells the user what that particular image is [based on what is in the tag] Many website designers use those tags to describe the link, if that is what the image has, others put the "" in if it is only an image.

Users can actually turn them off in their browser settings I believe, at least, I know they can turn them off for the desktop and I think also in the browser [but don't quote me :) ] However, the only way I know for the page author to 'turnoff' the tags is to either eliminate the alt and title or put "" in them.

Hope this helps.

Ruth


Poster: Vince86
Dated: Tuesday September 5 2006 - 23:57:04 BST

You confirm my sentiment, there is no solution to this problem.
Thanks

Vince
See you in 2010 with IE7 and FireFox10...


Poster: Vince86
Dated: Wednesday September 6 2006 - 0:04:58 BST

I have the solution! I have to add an empty title tag:

<img src="image.jpg" alt="blabla" title="" />

:D


Poster: Ruth
Dated: Wednesday September 6 2006 - 7:06:12 BST

Hi Vince,

Thanks so much for posting the solution. We really appreciate it.

Ruth


Poster: Andy
Dated: Wednesday September 6 2006 - 10:16:35 BST

Alternatively, you could try this:

Quote:
<a href="mylink.htm" onmouseover="this.alt='';showtip('my tooltip');" onmouseout=hidetip();><img src="myimage.gif" alt="theAltTag"/></a>


Hope this helps,
Andy


Poster: Vince86
Dated: Wednesday September 6 2006 - 10:24:46 BST

sorry admin it doesn't work ;) the "this" point to the "a" tag, but this works (for IE, else use document.all["img"]):

<a href="mylink.htm" onmouseover="document.getElementById('img').alt='';showtip('my tooltip');" onmouseout="hidetip();"><img id="img" src="myimage.gif" alt="theAltTag"/></a>


Poster: Andy
Dated: Wednesday September 6 2006 - 10:45:20 BST

oops, sent you the wrong code:

Try this:

Quote:
<a href="mylink.htm"><img onmouseover="this.alt='';showtip('my tooltip')" onmouseout="hidetip()" src="myimage.gif" alt="theAltTag"/></a>