<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>browser_formdata_sample.html</title> </head> <body> <input id="txt" /> <script type="text/javascript;version=1.8"> let isOuter = window == window.top; if (isOuter) { let iframe = document.createElement("iframe"); iframe.setAttribute("src", "https://example.com" + location.pathname); document.body.appendChild(iframe); } </script> </body> </html>