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

Dumb Question

Status
Not open for further replies.

celticking

Technical User
Feb 15, 2001
69
US
I know this is dumb, how do i open a new window from a text link, maximized full with no toolbar?
Thanks.
 
The main problem i'm having is opening the window maximized for all resolutions,
Thanks.
 
hi,

try window.open("window-URL","window-name")

if u want the window to have no toolbars

then write window.toolbar.visible=false

to maximize a window use the folowing function

function MaxFunc() {
if (window.screen) {
var x1 = screen.availWidth;
var y1= screen.availHeight;
window.moveTo(0, 0);
window.resizeTo(x,y);
}
}


this shud work..........well i didnt try this one...so check it anyway

btw friend, no doubt in this world is dumb....not to ask when required is dumb rather......

Regards,
R.Subramanian
 
hie guyz!
>>window.toolbar.visible=false

doesnt work (ie5.0)

use window.open("window-URL","window-name","toolbar=no") or 0 - doesnt matter
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top