file test100.htm
codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<script language="JavaScript" type="text/javascript">
<!--
function addTo() {
window.open("test100B.htm");
}
-->
</script>
</script>
</head>
<body>
<table>
<tr>
<td name="td1" id="td1" onclick="addTo();">121212</td>
</tr>
</table>
</body>
</html>
File test100b.htm
codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<body>
<textarea name="txt"></textarea>
<script language="JavaScript" type="text/javascript">
<!--
document.all.txt.value += window.opener.document.all.td1.innerText;
//-->
</script>
</body>
</html>