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!

I started the thread below this and

Status
Not open for further replies.

nolimitz

Technical User
May 26, 2002
3
US
I started the thread below this and thought the guy answered my question but it turns out it's a little different. The one he gave me opens a popup window. I need be able to click on a link then have linked window resize while the original window stays put. Here's some more info:

I need a small script for a window resize that only shows the border. I've been using the one below but it doesn't do what I need. I know you need to add
toolbar=no,menubar=no,location=no,scrollbars=no,resize=no
in somewhere but not sure how. Please help



<script language=&quot;JavaScript&quot;>
function mov_it()
{// version 1.00
self.moveTo(0,0);//specify the pixel width, pixel height here
self.resizeTo(600,400);//specify the pixel width, pixel height here


}
//-->
</script>
</head>


<body>

<body onload=&quot;mov_it();&quot;>
 
does this resize happen onload or after a event? provide tools to let people become their best.
 
sorry didn't see the link ref.
what the other &quot;guy&quot; gave you was actually what it sounds like you want. I think you want what you should jsut be doing with CSS though. But here's what I think you want.
<body>
<a href=&quot;#start&quot; onclick=&quot;window.open('your page.htm','title','width=600,height=400,directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no,screenX=600,screenY=400')&quot;>your link</a>
</body> provide tools to let people become their best.
 
OHHHHHHHHHHHH!

Sorry, I thought you wanted a popup window. My mistake!
colorado.gif
 
that's what I thought he wanted to, but sense you tried that there was only one thing left I could think of. provide tools to let people become their best.
 
OH MY GOD, Finnaly figured it out. Was much more complex then I though. Thanks for the help though.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top