button Event Attribute
Complete Event Object Reference
Definition and Usage
The button event attribute returns a number that indicates which mouse button was
clicked when an event was triggered.
Syntax
| Parameter |
Description |
| 0 |
Specifies the left mouse-button |
| 1 |
Specifies the middle mouse-button |
| 2 |
Specifies the right mouse-button |
Internet Explorer has different parameters:
| Parameter |
Description |
| 1 |
Specifies the left mouse-button |
| 4 |
Specifies the middle mouse-button |
| 2 |
Specifies the right mouse-button |
Tips and Notes
Note: For left-handed configured mice the button parameter values are
reversed.
Tip: Mozilla gives a
Ctrl–Click a button value of 2 (same as right-click).
Example
The following example alerts which mouse button was clicked:
<html>
<head>
<script type="text/javascript">
function whichButton(event)
{
if (event.button==2)
{
alert("You clicked the right mouse button!")
}
else
{
alert("You clicked the left mouse button!")
}
}
</script>
</head>
<body onmousedown="whichButton(event)">
<p>Click in the document. An alert box will
alert which mouse button you clicked.</p>
</body>
</html>
|
Try-It-Yourself Demos
button
- Check which mouse button was clicked
Complete Event Object Reference
 |
 |
 |
 |
|
The Ektron Intranet
lets you do everything you need to do on your corporate intranet and everything you want to do... all with just one application.
What can you do with the Ektron Intranet? |
 |
Navigate through content, documents, assets, colleagues and workgroups quickly and intuitively with enterprise search |
 |
Communicate with friends and colleagues with forums, message boards and corporate blogging using the new Social Networking Platform |

|
Utilize the extensive out-of-the box features or customize your site through Ektron CMS400.NET's open architecture |
 |
Promote collaboration in your organization through project workspaces where others can efficiently find information and work together |
 |
Author/edit content, manage navigation, menus, audit trails, workflow and approvals with the best in breed Content Management |
|
|
|
|
See why there are 20,000+ Ektron integrations worldwide.
|
|
 |
TAKE THE VIDEO TOUR |
 |
or download a FREE TRIAL today. |
|