Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

"-blank" window?

Status
Not open for further replies.

llldnylll

Technical User
May 21, 2003
89
How can I have my index page to refresh to a different page and at the same time open up a small blank window?
 
Something like this?
Code:
<script language="javascript">
function redirect_n_open(){
newPage="index2.asp";
window.open("somepage.asp");
self.location.replace(newPage);
}
</script>
<body onLoad="redirect_n_open()">

[Peace][Pipe]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top