Jul 21, 2002 #1 hcubed IS-IT--Management Joined May 9, 2002 Messages 100 Location AU how can i change the window browser size and not have menu etc scroll bars etc
Jul 21, 2002 #2 NEVERSLEEP Programmer Joined Apr 14, 2002 Messages 667 Location CA "how can i change the window browser size" Code: window.resizeTo(newwidth, newheight); example full screen : Code: window.moveTo(0,0); window.resizeTo(screen.width, screen.height); "and not have menu etc scroll bars etc" u canot do this in the same window u must luuach a new one : Code: window.open('where.html','name','width=' + screen.width + ',height=' + screen.height + ',directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no'); so to lauch that window used this link Code: <a href="javascript:window.open('where.html','name','width=' + screen.width + ',height=' + screen.height + ',directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no')">link word</a> dont forget to place this in other page Code: <body onload="window.moveTo(0,0);"... --------------------------------------- someone knowledge ends where someone else knowledge starts Upvote 0 Downvote
"how can i change the window browser size" Code: window.resizeTo(newwidth, newheight); example full screen : Code: window.moveTo(0,0); window.resizeTo(screen.width, screen.height); "and not have menu etc scroll bars etc" u canot do this in the same window u must luuach a new one : Code: window.open('where.html','name','width=' + screen.width + ',height=' + screen.height + ',directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no'); so to lauch that window used this link Code: <a href="javascript:window.open('where.html','name','width=' + screen.width + ',height=' + screen.height + ',directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no')">link word</a> dont forget to place this in other page Code: <body onload="window.moveTo(0,0);"... --------------------------------------- someone knowledge ends where someone else knowledge starts