Answers for "disable scrolling in an iframe"

5

removing scroll bar of iframe

<iframe frameborder="0" scrolling="no" style="height:380px;width:6000px;border:none;" src='https://yoururl'></iframe>
Posted by: Guest on October-22-2020
-1

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.
Posted by: Guest on April-05-2021

Browse Popular Code Answers by Language