-
1
- #1
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 "galleryimg='false'"..like so
or disable it through javascript like this:
hope this was helpful! Suceess, thats the way you spell success!
Got a question? Ask IMOZRMY!
In your <img> tag you can put "galleryimg='false'"..like so
Code:
<img src="blah.jpg" galleryimg="false">
Code:
document.imageName.galleryImg = "false";
Got a question? Ask IMOZRMY!