function disableRightClick(event) {
if (event.button == 2) {
event.preventDefault(); // Prevent the default right-click behavior
alert("Sorry, right click is not allowed !!");
return false;
}
}
function disableRightClick(event) {
if (event.button == 2) {
event.preventDefault(); // Prevent the default right-click behavior
alert("Sorry, right click is not allowed !!");
return false;
}
}