JSFiddle - React, Tailwind, and code Playground

HTML

<div></div>

CSS

div {
    border:1px solid #000;
    width:200px;
    height:200px;
}

JavaScript

$("div").on("mousedown", function(e){
    alert(e.which);
    if(e.which == 3){
        //do something
    }
});