How to use sandbox attribute value (allow-modals ) with < iframe > tag in HTML ? with example
How to use sandbox attribute value (allow-modals ) with < iframe > tag in HTML ? with example
allow-modals helps to Allows to
open modal windows with iframe in HTML.
Example
<body>
<iframe src="sandboxdemo.html"
sandbox="allow-modals">
</iframe>
</body>
Comments
Post a Comment