Answers for "how to disable from seeing iframe"

1

disable autoplay in html iframe

<iframe width="{$width}" height="{$height}" src="http://blank.com/embed/{$id}" allowfullscreen="" controls="" autoplay="" frameborder="0" scrolling="no"></iframe>
<iframe width="{$width}" height="{$height}" src="http://blank.com/embed/{$id}" allowfullscreen="" controls="controls" autoplay="false" frameborder="0" scrolling="no"></iframe>
<iframe width="{$width}" height="{$height}" src="http://blank.com/embed/{$id}" allowfullscreen="" controls="0" autoplay="0" frameborder="0" scrolling="no"></iframe>
Posted by: Guest on October-25-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

Code answers related to "how to disable from seeing iframe"

Browse Popular Code Answers by Language