Javascript Disable Right Click / Disable Google Lens

script>
//disable right-click
window.oncontextmenu = function(event) {
     event.preventDefault();
     event.stopPropagation();
     return false;
};
</script

Index Previous Next