iframe sandbox Attribute - An <iframe> sandbox allowing scripts and access to server content: - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:iframe

Description

iframe sandbox Attribute - An <iframe> sandbox allowing scripts and access to server content:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<iframe src="demo_iframe_sandbox_origin.htm" sandbox="allow-same-origin allow-scripts">
  <p>Your browser does not support iframes.</p>
</iframe><!--from ww  w. j  a  va2s .c  o m-->

</body>
</html>

Related Tutorials