Click to See Complete Forum and Search --> : open page


vinsa
03-04-2003, 04:16 AM
This script not work with Internet Explorer 5.0
Can someone to send me such javascript script for Intenet Explorer 5.0

<script>
top.opener.document.location.href="email.html";
</script>

Nicodemas
03-04-2003, 04:33 AM
Try this instead of what you have. The code you have is telling the window that is opened to call upon a window it has supposedly opened to change it's URL.



<script>
opener.location.href="email.html";
</script>