Stop Right Click

by Santosh Thakur

HTML

<h1>Stop Right Click</h1>
<div class="grid">This is context</div>

CSS

.grid{
  width:400px;
  height:100px;
  background:#fff;
  border:1px solid #333;
}

JavaScript

document.querySelector('.grid').addEventListener('contextmenu', function(e) {
alert(e.text);
e.preventDefault();
});