G Guest Sep 11, 2006 #1 I would like to create a link that opens in a new smaller window. can someone give me some tips..thanks
I would like to create a link that opens in a new smaller window. can someone give me some tips..thanks
S Steve Easton Sep 11, 2006 #2 Try the free "Spawn" from Jimco software. www.jimcosoftware.com -- Steve Easton Microsoft MVP FrontPage FP Cleaner http://www.95isalive.com/fixes/fpclean.htm Hit Me FP http://www.95isalive.com/fixes/HitMeFP.htm
Try the free "Spawn" from Jimco software. www.jimcosoftware.com -- Steve Easton Microsoft MVP FrontPage FP Cleaner http://www.95isalive.com/fixes/fpclean.htm Hit Me FP http://www.95isalive.com/fixes/HitMeFP.htm
G Guest Sep 11, 2006 #3 In code view. Add the following before the head tag <script language="javascript"> function openWindow() { newWindow = window.open("window2.html","subWind","status,menubar,height=400,width=300"); newWindow.focus( ); } </script> Then in your document create a link <a href="javascriptpenWindow();">Go</a> You can adjust width and height.. also if you search around on the internet you will find all of the window.open parameters, size, position etc.
In code view. Add the following before the head tag <script language="javascript"> function openWindow() { newWindow = window.open("window2.html","subWind","status,menubar,height=400,width=300"); newWindow.focus( ); } </script> Then in your document create a link <a href="javascriptpenWindow();">Go</a> You can adjust width and height.. also if you search around on the internet you will find all of the window.open parameters, size, position etc.