Javascript examples for DOM HTML Element:IFrame
Sandbox iframe location changing
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript"> window.onload=function(){/*w ww. ja v a2 s . com*/ var frame = document.getElementById("myframe"); var fdoc = frame.contentDocument; fdoc.write("Hello world"); // or whatever } </script> </head> <body> <iframe sandbox="allow-scripts allow-same-origin" id="myframe" src="about:blank"></iframe> </body> </html>