JavaScript left and right click function

16,844

You want to use the e.button property to check which mouse event was called. The value for the left mouse button being clicked is different in IE. Your code would look like this:

var left, right;
left = mie ? 1 : 0;
right = 2;

document.body.addEventListener('mousedown', function (e){
    if(e.button === left){
        Player1.isLeftClick = true;
    }
    else if(e.button === right){
        Player1.isRightClick = true;
    }
}, false);

document.body.addEventListener('mouseup', function (e){
    if(e.button === left){
        Player1.isLeftClick = false;
    }
    else if(e.button === right){
        Player1.isRightClick = false;
    }
}, false);

Demo

Share:
16,844

Related videos on Youtube

JeremeiBou
Author by

JeremeiBou

Updated on September 15, 2022

Comments

  • JeremeiBou
    JeremeiBou over 1 year

    This is for an HTML5 canvas game that I am making. In the game, there is a character that has a gun, he can shoot it and reload it. I would like the player to use the left mouse button for shooting and the right mouse button for reloading.

    What I need is that when ever I click the left mouse button, a variable in my player object(Player1.isLeftClick) becomes true, and when I let go of the button the same variable becomes false. The same thing should also happen with the right mouse button, but with another variable(Player1.isRightClick). I also want it to be capable with all the most popular browsers(Chrome, Firefox, Explorer, etc.). I must also be in pure JavaScript with no libraries like jQuery! I already achieved this with keyboard events, but I need this with the mouse events.

    If it helps, I already have event handlers for keyboard up and down and mouse movement. These are made in the init function that initializes the game when the images are loaded.

    document.addEventListener('mousemove', mousePos, false);
    document.addEventListener('keydown', checkKeyDown, false);
    document.addEventListener('keyup', checkKeyUp, false); 
    

    I also have variable called mie that is true if the used browser is Internet Explorer and false for other browsers.

  • Kroid
    Kroid about 8 years
    jsfiddle: Uncaught ReferenceError: mie is not defined
  • hypers
    hypers over 7 years
    @Kroid, yeah. You need to populate it via your favourite IE detection way. Check out some of them
  • SingleStepper
    SingleStepper about 7 years
    You can simplify the code by only checking if the button is right (2). If it's not right, then it's the left button.
  • Some Guy
    Some Guy about 7 years
    @SingleStepper That's not true - mice commonly also have a clickable scroll button (and occasionally others too, for gaming mice). You ought to test for equality for conditions instead of testing for inequality and inferring it.