Answers for "iframe disable scrolling"

CSS
4

iframe no scroll

<iframe src="otherpage.html" scrolling="no" style="overflow:hidden;"></iframe>
Posted by: Guest on July-09-2020
2

iframe no scroll

<iframe scrolling="no"></iframe>
Posted by: Guest on February-15-2021
-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