When hovering the mouse over images IE pops up a little toolbar that suggests saving, printing and so on.
Here's a pic of this:
I need to accomplish this with JavaScript.
When hovering the mouse over images IE pops up a little toolbar that suggests saving, printing and so on.
Here's a pic of this:
I need to accomplish this with JavaScript.
try following on any event u want to consider:
onmouseover="return false;"
or
onmouseover="javascript:void(0);"
This only works if the image is embedded in a web page.
If you do NOT want an image to show the toolbar, then use GALLERYIMG="no" in the img tag.
If you DO want an image to show the toolbar, then use GALLERYIMG="yes" in the img tag.
http://msdn.microsoft.com/en-us/library/ms533774%28VS.85%29.aspx