This article is in need of a technical review.
Summary
The DOM MouseEvent interface represents events that occur due to the user interacting with a pointing device (such as a mouse).
Common events using this interface include click, dblclick, mouseup, mousedown. The list of all events using this interface is provided in the Events reference.
MouseEvent derives from UIEvent, which in turn derives from Event.
Properties
-
MouseEvent.altKeyRead only -
trueif the alt key was down when the mouse event was fired. -
MouseEvent.buttonRead only - The button number that was pressed when the mouse event was fired.
-
MouseEvent.buttonsRead only DOM level 3 -
The buttons being pressed when the mouse event was fired
-
MouseEvent.clientXRead only - The X coordinate of the mouse pointer in local (DOM content) coordinates.
-
MouseEvent.clientYRead only - The Y coordinate of the mouse pointer in local (DOM content) coordinates.
-
MouseEvent.ctrlKeyRead only -
trueif the control key was down when the mouse event was fired. -
MouseEvent.metaKeyRead only -
trueif the meta key was down when the mouse event was fired. -
MouseEvent.movementXRead only -
The X coordinate of the mouse pointer relative to the position of the last
mousemoveevent. -
MouseEvent.movementYRead only -
The Y coordinate of the mouse pointer relative to the position of the last
mousemoveevent. -
MouseEvent.relatedTargetRead only -
The secondary target for the event, if there is one.
-
MouseEvent.screenXRead only - The X coordinate of the mouse pointer in global (screen) coordinates.
-
MouseEvent.screenYRead only - The Y coordinate of the mouse pointer in global (screen) coordinates.
-
MouseEvent.shiftKeyRead only -
trueif the shift key was down when the mouse event was fired. -
MouseEvent.whichRead only - The button being pressed when the mouse event was fired.
- MouseEvent.mozPressure Read only
- The amount of pressure applied to a touch or tablet device when generating the event; this value ranges between 0.0 (minimum pressure) and 1.0 (maximum pressure).
- MouseEvent.mozInputSource Read only
-
The type of device that generated the event (one of the
MOZ_SOURCE_*constants listed below).This lets you, for example, determine whether a mouse event was generated by an actual mouse or by a touch event (which might affect the degree of accuracy with which you interpret the coordinates associated with the event).
Methods
-
MouseEvent.getModifierState() DOM level 3 -
Returns the current state of the specified modifier key. See the
KeyboardEvent.getModifierState() for details.
Initiate Mouse Event
Click here to see how to initiate mouse event
Example
This example demonstrates simulating a click (that is programmatically generating a click event) on a checkbox using DOM methods.
function simulateClick() {
var evt = new MouseEvent("click", {
bubbles: true,
cancelable: true,
view: window,
});
var cb = document.getElementById("checkbox"); //element to click on
var canceled = !cb.dispatchEvent(evt);
if(canceled) {
// A handler called preventDefault
alert("canceled");
} else {
// None of the handlers called preventDefault
alert("not canceled");
}
}
document.getElementById("button").addEventListener('click', simulateClick);
<p><label><input type="checkbox" id="checkbox"> Checked</label> <p><button id="button">Click me</button>
Click on the button to see how the sample works:
Specifications
| Specification | Status | Comment |
|---|---|---|
| Document Object Model (DOM) Level 2 Events Specification The definition of 'MouseEvent' in that specification. |
Recommendation | |
| Document Object Model (DOM) Level 3 Events Specification The definition of 'MouseEvent' in that specification. |
Working Draft | |
| UI Events The definition of 'MouseEvent' in that specification. |
Working Draft | Extend DOM3 |
| Pointer Lock The definition of 'MouseEvent' in that specification. |
Candidate Recommendation | Extend the MouseEvent interface |
Browser compatibility
| Feature | Firefox (Gecko) | Chrome | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
movementXmovementY |
(Yes) moz | (Yes) webkit | ? | ? | ? |
buttons |
(Yes) | Not supported | ? | ? | ? |
which |
1.0 | 1.0 | 9.0 | 5.0 | 1.0 |
| Feature | Firefox Mobile (Gecko) | Android | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|
| Basic support | ? | ? | ? | ? | ? |
Gecko notes
Specific constants
The possible values for MouseEvent.mozInputSource are listed in the following table. They are available as properties on the MouseEvent interface (e.g. MouseEvent.MOZ_SOURCE_UNKNOWN).
| Constant name | Value | Desription |
|---|---|---|
MOZ_SOURCE_UNKNOWN |
0 | The input device is unknown. |
MOZ_SOURCE_MOUSE |
1 | The event was generated by a mouse (or mouse-like device). |
MOZ_SOURCE_PEN |
2 | The event was generated by a pen on a tablet. |
MOZ_SOURCE_ERASER |
3 | The event was generated by an eraser on a tablet. |
MOZ_SOURCE_CURSOR |
4 | The event was generated by a cursor. |
MOZ_SOURCE_TOUCH |
5 | The event was generated on a touch interface. |
MOZ_SOURCE_KEYBOARD |
6 | The event was generated by a keyboard. |