Jquery Mouse Right Click
Jquery Mouse Right Click
by Avinashullal
HTML
<div id="block"></div>
CSS
#block {
height:100px;
width:100px;
background-color:black;
}
JavaScript
$(document).ready(function () {
document.oncontextmenu = function () {
return false;
};
$('#block').mousedown(function (e) {
if (e.button == 2) { //2 for Right Click, 3 for mouse wheel click
alert('Right mouse button!');
return false;
}
return true;
});
});