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

open webpage in seperate window

Status
Not open for further replies.

andycape

Programmer
Aug 22, 2003
177
ZA
i want to open a ASP page in a seperate browser window, I use the following :

<script language=&quot;javascript&quot;>
window.open('../quotes/ViewQuote.asp','X','top=25,left=25,width=880,height=500',true);
history.back();
</script>

How would i change this if i wanted it to be the size of a normal webpage, with scrollbars like a normal webpage?

(at the moment i am specifying the size & no scrollbars)

thanx
 
Ok , it works using

window.open('../quotes/ViewQuote.asp');

but how do i maximize it ?
(it opens in quite a small size)
 
I searched for &quot;maximise window&quot; here using the &quot;Search Posts (Keyword)&quot; option. One of the first listed in that page of results: thread216-730539

Hope that answers your problem... if not... maybe searching more of the threads already posted to the Javascript forum will be of help.

Jeff
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top