I am trying to disable the right-click on content. For that, I used the "pointer-events: none;"
CSS property. But using that CSS property I am not able to scroll to see the complete content.
If I use the "pointer-events: none;"
property how do enable the scroll bar or For disable the right click instead of using the "pointer-events: none;"
CSS property is there any other option we have.
Please find my sample code below. Please Any help appreciated.
Sample Application - Using this link you can check the code.
<!DOCTYPE html>
<html>
<body>
<iframe src="https://africau.edu/images/default/sample.pdf#toolbar=0"
style="pointer-events:none;"
title="Iframe Example"></iframe>
<script>
</script>
</body>
</html>