I want below javascript to happen but without a alert, can someone help me
function DisableRightClick(event)
{
if (event.button == 2)
alert("Right Clicking not allowed!");
}