Search w3schools.com:

SHARE THIS PAGE

HTML <iframe> sandbox Attribute

HTML iframe Tag Reference HTML <iframe> tag

Example

An <iframe> with extra restrictions:

<iframe src="demo_iframe_sandbox.htm" sandbox=""></iframe>

Try it yourself »
(more examples at the bottom of this page)

Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The sandbox attribute is supported in Internet Explorer 10, Firefox, Chrome, and Safari.

Note: The sandbox attribute is not supported in Internet Explorer 9 and earlier versions, or in Opera.


Definition and Usage

If specified as an empty string (sandbox=""), the sandbox attribute enables a set of extra restrictions for the content in the inline frame.

The value of the sandbox attribute can either be an empty string (all the restrictions is applied), or a space-separated list of pre-defined values that will REMOVE particular restrictions.


Differences Between HTML 4.01 and HTML5

The sandbox attribute is new in HTML5.


Syntax

<iframe sandbox="value">

Attribute Values

Value Description
"" Applies all restrictions below
allow-same-origin Allows the iframe content to be treated as being from the same origin as the containing document
allow-top-navigation Allows the iframe content to navigate (load) content from the containing document
allow-forms Allows form submission
allow-scripts Allows script execution


Examples

Try it Yourself - Examples

An <iframe> sandbox allowing form submission
Enable a set of extra restrictions, but allow form submission.

An <iframe> sandbox allowing scripts and access to server content
Enable a set of extra restrictions, but allow scripts and access to server content.


HTML iframe Tag Reference HTML <iframe> tag

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]