Skip to content

Instantly share code, notes, and snippets.

@kirill3333
Created February 22, 2017 16:52
Show Gist options
  • Save kirill3333/8c525d4698977cebc543cc61bf2a1252 to your computer and use it in GitHub Desktop.
Save kirill3333/8c525d4698977cebc543cc61bf2a1252 to your computer and use it in GitHub Desktop.
Iframe order
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>IFrame</h1>
<script>
parent.window.addState("Iframe was loaded");
</script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RxExample</title>
</head>
<body>
<h1>Parent</h1>
<ul id="list"></ul>
<iframe src="iframe.html"></iframe>
<script>
window.addState = function(state) {
var node = document.createElement("LI");
var textnode = document.createTextNode(state);
node.appendChild(textnode);
document.getElementById("list").appendChild(node);
};
addState("Parent was loaded");
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment