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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Formatting an open Window

Status
Not open for further replies.

marshalsea

Programmer
May 26, 2000
51
GB
Using the following code I can create a Window preformatted to how I want it:<br><br>function openNewWin(url) {<br> window.name = &quot;main&quot;;<br> destination = &quot;<A HREF=" TARGET="_new"> + window.location.host +&nbsp;&nbsp;url;<br> remote = window.open(destination,&quot;&quot;,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=700,height=500');<br> remote = self;<br>}<br><br>Unforunately I cannot apply this to an already open window, does anyone know how I can do this?<br><br>I suspect it's not possible but thought I'd throw it open to you guys. <p>Ben Marshalsea<br><a href=mailto: > </a><br><a href= > </a><br>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top