How Do I Force a Link to Open a Maximized New Browser Window ?

  • Thread starter Thread starter Ken Hall
  • Start date Start date
K

Ken Hall

I know how to use 'New Window' in Target to cause the link to open a
new browser window, but it doesn't open with the window maximized.

Also, I encounter links where the new window is wide open -- it's full
screen -- that is, without the browser toolbars or favorites pane.
Ideally this is what I want to do. I am trying to display a large
JPEG in the new window.

Ken
 
Make sure you give the viewer a button to click or other option to close the
window so they don't have to use Alt+F4 to close it.
<input type="button" value="Close Page" Onclick="parent.close()">
Will give them a clickable button

Also, onclick="parent.close()" in the opening body tag will close the page
if it's clicked anywhere.

<body onclick="parent.close()">

imho opening pages full screen will make people leave your site. Everyone
knows how to use a scroll bar.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top