how to determine which Mouse Button was pressed
Answer / prashant ramkishan muttepawar
syntax :: alert("You pressed button: " + event.button)
Return Value ::A Number, representing which mouse button that was pressed when the mouse event occured.
Possible values:
0 : Left mouse button
1 : Wheel button or middle button (if present)
2 : Right mouse button
Note: Internet Explorer 8 and earlier has different return values:
1 : Left mouse button
2 : Right mouse button
4 : Wheel button or middle button (if present)
Note: For a left-hand configured mouse, the return values are reversed
| Is This Answer Correct ? | 0 Yes | 0 No |
code to set the main window's size
code to get the coordinates of a Click Event
determine which key was pressed and its type
snippet to prevent submission of form when certain/any validations got failed
Reading which Non-Character Key was pressed
Reading which Character Key was pressed
code to positioning of window in certain dimensions
program to show a progress bar
how to pass data between pages using Cookies
Code for Adding Message and Confirmation Boxes Using JavaScript?
write a program segment that will ask the user if he wants to computer the perimeter of the area of the triangle. if the perimeter is wanted, ask the measure of the three sides and compute for the perimeter. if the area is wanted, ask for the measures of the base and height and compute for the area. display the computed value
How to test whether two strings are equal or not ?