Forum Moderators: open
<html>
<head>
<script>
function open()
{
document.getElementById('middle').innerHTML='<object type="text/html" data="jsp/client/administration.htm" width="600" height="500"></object>';}
</script>
</head>
<body>
<div id='top'><a href="#" onClick="open()">open</a></div>
<div id='middle'></div>
<div id='foot'></div>
</body></html>
It seems like the page in inner div tag cannot access the other elements in parent page.
It looks like you don't have any cross-domain issues, since "jsp/client/administration.html" is on the same site... How are you referencing the <div id="foot"> from the other file?
P.S. I've not seen the <object> tag used in this way, but I'll assume it's behavior is identical to an <iframe>. :/