|
|
|||||||
| Tech-To-Tech You're a tech and you need an answer quick, post here for quick help from other techs around the globe. |
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
|
#1 |
|
Registered User
Join Date: Apr 2001
Location: UK
Posts: 26
|
For our business web-site we have a link to another page on a different server, and we want it to open in a new browser window, BUT its not maximised?? it opens up in a std smaller size until the user clicks maximise, We dont want people to have to maximise it first so that the computer remembers it like in a posting earlier on. are there any commands with the "_New" command that helps me out? (THERE MUST BE) LOL
__________________
:-) |
|
|
|
|
|
#2 |
|
Registered User
Join Date: Aug 2000
Location: NYC
Posts: 288
|
Well, you could try setting the link properties:
function Maximize() { window.innerWidth = screen.width; window.innerHeight = screen.height; window.screenX = 0; window.screenY = 0; alwaysLowered = false; } <A HREF="javascript: onClick=Maximize()">Link</A> or, set the properties manually: function newWindow(bookgif){ bookWindow=window.open(bookgif, 'bookwin', 'width=800,height=600') bookWindow.focus() } <A href="javascript:newWindow('abc.html')"> |
|
|
|