Hi,
Does anyone know if this is possible??
I've got a script that opens a new window. Now, I want the parent-window to print the url of the sites that the new window visits.
Suggestions??
<HEAD>
<META http-equiv=refresh content=3></HEAD>
<BODY>
<script language="javascript">
nav = window.open('', 'nav');
parent.nav.location = ('http://www.yahoo.com');
url = parent.nav.location;
document.write(url);
</script>
</BODY>