Thread: Mouse Events
View Single Post
  #11 (permalink)  
Old 10-18-2007, 12:41 AM
Pvinothkumar Pvinothkumar is offline
D-Web Analyst
 
Join Date: Sep 2007
Posts: 237
Pvinothkumar is on a distinguished road
Default 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....
Reply With Quote