1
Answer

Disable right click on the textbox WITHOUT alert

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!");

}

}

Answers (1)