Skip to content

Instantly share code, notes, and snippets.

@TzuYangLin
Last active August 29, 2015 14:07
Show Gist options
  • Save TzuYangLin/e261390e9a558ad3d789 to your computer and use it in GitHub Desktop.
Save TzuYangLin/e261390e9a558ad3d789 to your computer and use it in GitHub Desktop.
Example: Call function in another frame
//Try:
<frameset col"50%,*">
<frame src="page1.htm">
<frame src="page2.htm" name="otherFrameName">
</frameset>
//Then in page1.htm:
<script language="JavaScript">
parent.otherFrameName.functionName();
</script>
//Then in page2.htm:
<script language="JavaScript">
function functionName() {
alert('Hello world');
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment