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!

How to open new window maximized 1

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I need to show report in the new maximized window.

The script I use is not reliable:

var w_scr = screen.width;

var h_scr = screen.height;

here = open('report.asp','report','width=' + w_scr + ',height=' + h_scr + ',left=0,top=0,toolbar=no,scrollbars=yes,resizable=no,menubar=no,status=no,directories=no,location=no');



 
for IE you can use the fullscreen=true option in the otpions argument of window.open()


jared@aauser.com

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top