Results 1 to 5 of 5

Thread: Internet Explorer Tooltip

  1. #1
    Join Date
    Jul 2005
    Posts
    92
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Internet Explorer Tooltip

    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.

  2. #2
    Join Date
    Dec 2004
    Location
    UK
    Posts
    2,358
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by myyoungfamily
    Does anybody know how to eliminate the IE tooltip when mousing over images?
    Include an empty title attribute:

    HTML Code:
    <img alt="..." src="..." title="">
    Mike

  3. #3
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    That will work for alt attributes being shown but, if you mean the imagetoolbar, then use:

    HTML Code:
    <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.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  4. #4
    Join Date
    Jul 2005
    Posts
    92
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    So, if I use an empty "title" tag that will do the trick?

    Thanks for the meta tag tip, I've been using that.

  5. #5
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Quote Originally Posted by myyoungfamily
    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.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •