Disabling the Right-Click Menu For an Image Hi all....
How can I disable the right-click context menu for a particular image, while still enabling the menu for all other parts of my page?
Yes. In most modern browsers you can disable the right-click menu for a particular image. To do so, you can use the event handler oncontextmenu="return false;" within the IMG tag that defines your image:
<IMG border=0 src="..." oncontextmenu="return false;">
Thanks.... |