Forum Moderators: open
index.html
<html>
<body><script type="text/javascript">
function text2add(){
return '<font color=red>This is my new text!</font>';
}
</script>Main page! Frame below.
<br><br>
<iframe src="iframe.html"></iframe>
</body>
</html>
iframe.html
<html>
<body><script type="text/javascript">
document.write(parent.text2add());
</script>This is my iframe
</body>
</html>