Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Disabling "My Pictures" toolbar 1

Status
Not open for further replies.

elegidito

Programmer
Jan 19, 2002
358
I stumbled upon this while searching through the MSDN library. It disables the little toolbar that pops up in IE6 when you hold your mouse over an image. I've seen a couple posts about this recently, so thought I would post something about it.
In your <img> tag you can put &quot;galleryimg='false'&quot;..like so
Code:
<img src=&quot;blah.jpg&quot; galleryimg=&quot;false&quot;>
or disable it through javascript like this:
Code:
document.imageName.galleryImg = &quot;false&quot;;
hope this was helpful! Suceess, thats the way you spell success!
Got a question? Ask IMOZRMY!
 
Hey I like that! I hate that thing.

You get a
Code:
                  '
               \  ,  /
           ' ,___/_\___, '
              \ /o o\ /
          -=   > \_/ <   =-
              /_\___/_           . `   \ /   ` .
               /  `                    .

I dunno. Gimme a break, it's been a long day.

Thanks! -gerrygerry
Go To
 
The javascript thing doesn't work. I typed this in:

<SCRIPT LANGUAGE=&quot;Javascript&quot;>
document.imageName.galleryImg = &quot;false&quot;;
</SCRIPT>

It didn't work. I use MSIE-6

The extra attribute put into the IMG tag worked. [deejay]
Nate
&quot;If you're not living on the edge, you're taking up too much space!&quot;
 
Try this to disable the image toolbar throughout the entire document...

<META HTTP-EQUIV=&quot;imagetoolbar&quot; CONTENT=&quot;no&quot;>

Glenn
 
Oh yeah... what I submitted goes between the <head> </head> tags.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top