How to get right mouse botton click on image

D

Dustin Carroll

Hello,

I am trying to capture a right mouse button click on an image.

So far I am getting the left click with

<body onload="document.getElementById('image').onclick=eventclick;">
<image align=center image border=2 img src="data.jpg" id="image">

How can I detect the right mouse click on this image?

Thanks so much!
 
V

Volte

Dustin said:
Hello,

I am trying to capture a right mouse button click on an image.

So far I am getting the left click with

<body onload="document.getElementById('image').onclick=eventclick;">
<image align=center image border=2 img src="data.jpg" id="image">

How can I detect the right mouse click on this image?

Thanks so much!

Try this:

<body onload="document.getElementById('image').onclick=eventclick;">
<image align=center image border=2 img src="data.jpg" id="image"
oncontextmenu="showContextualMenu()">

Hope that helps :)
 
B

Bart Van der Donck

Dustin said:
I am trying to capture a right mouse button click on an image.

So far I am getting the left click with

<body onload="document.getElementById('image').onclick=eventclick;">
<image align=center image border=2 img src="data.jpg" id="image">

How can I detect the right mouse click on this image?

<img
onContextMenu="return false;"
onMouseDown="if (event.button==2) alert('image was right-clicked');"
border="2"
src="data.jpg">
 
T

Thomas 'PointedEars' Lahn

Bart said:
<img
onContextMenu="return false;"
onMouseDown="if (event.button==2) alert('image was right-clicked');"
border="2"
src="data.jpg">

Due to the proprietary `oncontextmenu' attribute, that is invalid HTML as
well. AFAIS, the right mouse click can be detected this way in Geckos too,
but display of the context menu cannot be prevented whatsoever (and that is
good so). In case this is just another misguided attempt at preventing
users from downloading the image, please don't, and search the group
archives instead.


PointedEars
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,756
Messages
2,569,535
Members
45,007
Latest member
OrderFitnessKetoCapsules

Latest Threads

Top