Thread: Image popup in Internet Explorer

  1. #1
    Frequently Quite Prolix dwks's Avatar
    Join Date
    Apr 2005
    Location
    Canada
    Posts
    8,057

    Image popup in Internet Explorer

    Some images in Internet Explorer, when you hover over them, have a popup in which you can choose to save the image, email it to someone else, etc. I was just wondering, for what images does this happen? Because it doesn't happen for all images.

    This isn't important or anything, I'm just wondering.
    dwk

    Seek and ye shall find. quaere et invenies.

    "Simplicity does not precede complexity, but follows it." -- Alan Perlis
    "Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
    "The only real mistake is the one from which we learn nothing." -- John Powell


    Other boards: DaniWeb, TPS
    Unofficial Wiki FAQ: cpwiki.sf.net

    My website: http://dwks.theprogrammingsite.com/
    Projects: codeform, xuni, atlantis, nort, etc.

  2. #2
    Lean Mean Coding Machine KONI's Avatar
    Join Date
    Mar 2007
    Location
    Luxembourg, Europe
    Posts
    444
    After a little research, I found this Microsoft support entry which explains the reasons it might not show up:

    The image toolbar has been disabled.

    -or-
    The image size is less than 200 x 200 pixels.

    -or-
    The image is a background image.

    -or-
    The image is part of an image mapping (indicating some sort of menu). If the Web page author uses the attributes USEMAP or ISMAP within the image tag, the image toolbar does not appear.

    -or-
    The Web page author disables the Image Toolbar either through a meta tag (<META HTTP-EQUIV="imagetoolbar" CONTENT="no">) or by setting the attribute GALLERYIMG="no" to an IMG tag element.

  3. #3
    Frequently Quite Prolix dwks's Avatar
    Join Date
    Apr 2005
    Location
    Canada
    Posts
    8,057
    Wow, thanks! I guess this was the problem . . .
    The image size is less than 200 x 200 pixels.
    I suppose I could use the GALLERYIMG attribute if I really wanted a popup . . . but I don't care about it that much.
    dwk

    Seek and ye shall find. quaere et invenies.

    "Simplicity does not precede complexity, but follows it." -- Alan Perlis
    "Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
    "The only real mistake is the one from which we learn nothing." -- John Powell


    Other boards: DaniWeb, TPS
    Unofficial Wiki FAQ: cpwiki.sf.net

    My website: http://dwks.theprogrammingsite.com/
    Projects: codeform, xuni, atlantis, nort, etc.

  4. #4
    Lean Mean Coding Machine KONI's Avatar
    Join Date
    Mar 2007
    Location
    Luxembourg, Europe
    Posts
    444
    I strongly insist that you shouldn't use GALLERYIMG, it's not a standard attribute for IMG (it's not a standard attribute for any tag) and just the same way that we preach every day to use "int main()", I advise you to code according to the HTML 4.01 specifications.

  5. #5
    Frequently Quite Prolix dwks's Avatar
    Join Date
    Apr 2005
    Location
    Canada
    Posts
    8,057
    Yeah, I know. Even Microsoft considers it obsolete. That's why I said "but I don't care about it that much."

    I actually follow HTML standards pretty well. I always use lowercase HTML tags, closing tags, etc. (In fact most of my HTML could probably be XHTML.)
    dwk

    Seek and ye shall find. quaere et invenies.

    "Simplicity does not precede complexity, but follows it." -- Alan Perlis
    "Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
    "The only real mistake is the one from which we learn nothing." -- John Powell


    Other boards: DaniWeb, TPS
    Unofficial Wiki FAQ: cpwiki.sf.net

    My website: http://dwks.theprogrammingsite.com/
    Projects: codeform, xuni, atlantis, nort, etc.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Problem reading tiff image files?
    By compz in forum C++ Programming
    Replies: 9
    Last Post: 10-30-2009, 04:17 AM
  2. Internet Explorer
    By Joanna in forum Tech Board
    Replies: 7
    Last Post: 04-25-2004, 02:28 AM
  3. FlashWindowEx not declared?
    By Aidman in forum Windows Programming
    Replies: 3
    Last Post: 05-17-2003, 02:58 AM
  4. Drag and drop from Internet Explorer
    By Echidna in forum Windows Programming
    Replies: 5
    Last Post: 10-02-2002, 02:14 AM
  5. closing microsoft internet explorer
    By canine in forum Windows Programming
    Replies: 11
    Last Post: 03-19-2002, 09:12 AM