Custom Size "new window"

liunx

Guest
I am hoping to have a splash screen on my index.html page that will provide a link to the actual main page. My website was built to be viewed in a specific size window (h=475, w=635) And I'm not sure how to do this.<br />
<br />
I assume it's something simple, like in the TARGET= part of the link, but I can't figure out how to do this in the link. <br />
<br />
Daniel<!--content-->Do you want to use the window.open method?<br />
<br />
if so you can do something like that:<br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"mainpage.html" onClick="window.open(this.href,'main','width=635,height=475,locationbar=yes');return false">go to mainpage</a><!--content-->You made a typo with href ;):<br />
<br />
<br />
... onclick="window.open(this.href, ...<!--content-->Re: you made a typo<br />
<br />
<br />
you're right, thx :cool:<!--content-->
 
Back
Top