mirror of
https://github.com/NohamR/Stream.git
synced 2025-05-24 00:38:58 +00:00
18 lines
403 B
HTML
18 lines
403 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Child Frame</title>
|
|
<script>
|
|
window.addEventListener("beforeunload", (event) => {
|
|
console.log("I am the 2nd one.");
|
|
});
|
|
window.addEventListener("unload", (event) => {
|
|
console.log("I am the 4th and last one…");
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
☻
|
|
</body>
|
|
</html> |