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