Prøv disse to filer:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>TITLE</title>
<script type="text/JavaScript">
function writeField(obj) {
var o = document.getElementById("Field");
o.innerHTML = obj.document.body.innerHTML + o.innerHTML;
}
</script>
</head>
<body>
<table border="1">
<tr>
<th>Statisk</th>
<th>Dynamisk</th>
</tr>
<tr>
<td>Fast værdi</td>
<td>
<div id="Field"></div>
<iframe style="display:none;position:absolute;width:1px;height:1px;left:0px;top:0px;" src="testing.html" frameborder="0"></iframe>
</td>
</tr>
<tr>
<td>Fast værdi</td>
<td>Jeg ændrer mig</td>
</tr>
</table>
</body>
</html>
-- og filen i iframe'en:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>TITLE</title>
</head>
<script type="text/JavaScript">
window.onload = function() {
document.body.innerHTML = new Date().getTime();
setTimeout('location.reload()', 2000)
parent.writeField(this);
}
</script>
<body>
</body>
</html>
- der er ikke noget, der klikker :)