Forum Moderators: open
I'm not sure of how to dynamically pick up the existing title tag - you might experiment with this:
<script type="text/javascript">
void(parent.document.title=document.title);
</script>
Put the following code anywhere in the <head> or <frameset> tags
<script type="text/javascript">
function changeTitle()
{
if (top.frames['main'].document.title)
{
top.document.title=top.frames['main'].document.title;
}
}
</script>
ONLOAD="changeTitle();" It works perfectly.