disable right click on iframe code example
Example: how to disable click inside iframe
You can try styling it with
<iframe style="pointer-events:none;"...>
If you need to get a click listener over it however,
you can add a transparent overlay on it
and attach the click listener to the overlay.