I have the following element that I would like to prevent from being downloaded by disabling the right click.
<iframe src={TEST + "#toolbar=0"} width="100%" height="800px"
onMouseDown={(e)=>e.preventDefault()} onContextMenu={(e)=>e.preventDefault()}/>
Unfortunately, when I right-click, it still brings up the context menu. Any idea why?