blob: 304cc54ae4448b84bf43aad3279b2dd198add165 (
plain)
1
2
3
4
5
6
7
8
9
|
<!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>
|