HTML Wizards - maximised Windows
Results 1 to 2 of 2

Thread: HTML Wizards - maximised Windows

  1. #1
    Registered User
    Join Date
    Apr 2001
    Location
    UK
    Posts
    26

    Lightbulb HTML Wizards - maximised Windows

    For our business web-site we have a link to another page on a different server, and we want it to open in a new browser window, BUT its not maximised?? it opens up in a std smaller size until the user clicks maximise, We dont want people to have to maximise it first so that the computer remembers it like in a posting earlier on. are there any commands with the "_New" command that helps me out? (THERE MUST BE) LOL
    :-)

  2. #2
    Registered User
    Join Date
    Aug 2000
    Location
    NYC
    Posts
    288

    Post

    Well, you could try setting the link properties:


    function Maximize()
    {
    window.innerWidth = screen.width;
    window.innerHeight = screen.height;
    window.screenX = 0;
    window.screenY = 0;
    alwaysLowered = false;
    }
    <A HREF="javascript: onClick=Maximize()">Link</A>

    or, set the properties manually:

    function newWindow(bookgif){
    bookWindow=window.open(bookgif,
    'bookwin', 'width=800,height=600')
    bookWindow.focus() }


    <A href="javascript:newWindow('abc.html')">
    BreakWindows
    God told me to skin you alive..

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •