Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<meta charset="utf-8">
<title>Iframer</title>
<body></body>
<script>
const child = document.createElement("iframe");
child.src = new URL(window.location).searchParams.get("url");
document.body.appendChild(child);
</script>