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

hpw to specify browser window size?? 1

Status
Not open for further replies.

SaltyDuke

Programmer
Sep 18, 2002
140
IE
Hello everyone

i'm a webmaster who has been charged with the task of doing a little HTML code for a webpage. only problem is i'm a little rusty with HTML...

i have the following piece of code:

<a href=&quot; target=&quot;NewWin&quot;>
Click here to open a new browser window
</a>
This has the effect of displaying the link in a new browser window (duh!). But is it possible to set the SIZE of this new window as well?? if so, is that done in the new file (newWin.html), or is it done using another tag etc???

i know it's probably a remedial issue to most of you but any help would be greatly appreciated.

Thanx
SaltyDuke
 
There are a few ways:

1.
Replace <body> with <body onload=&quot;self.resizeTo(600,300);&quot;> in the page being loaded.

2.
Open the window like this:

<a href=&quot;#&quot; onclick=&quot;window.open(&quot;NewWin.html&quot;,&quot;I'm The New Window&quot;,&quot;width=600,height=300&quot;);return false;&quot;>New Window</a>

Rick
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top