July 1998
Intermediate to advanced
1456 pages
65h 5m
English
button — NN n/a IE 4 DOM n/a
Read-only
Which mouse button was pressed to trigger the mouse event. Although theoretically you should be able to detect the right button, Internet Explorer 4 does not fire mouse events with that button, since context menus always appear in the browser.
if (event.button == 1) {
handle event for left button
}Any of the following allowed integers: 0 (no
button) | 1 (left button) | 2
(right button) | 4 (middle button of three-button
mouse).
0
Read now
Unlock full access