Results 1 to 4 of 4

Thread: URL to open in maximized window state within current window

  1. #1
    Join Date
    Dec 2007
    Posts
    88
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Question URL to open in maximized window state within current window

    Hi, I need help please!

    I have a link on a page, where i wont it open in maximized window state.

    the "_parent" allows to open in current window, but the maindow is never at maxmize state.
    I want the url to open in current window which it does but also force to open in maxize window state:

    <td rowspan="2"><a href="http://srv8-z199/fcFlow/Home.aspx" target="_parent"> height="127"></a></td>

    Regards

  2. #2
    Join Date
    Sep 2008
    Location
    Bristol - UK
    Posts
    842
    Thanks
    32
    Thanked 132 Times in 131 Posts

    Default

    So you want it to open 2 instances of the same page, one in the current window and another in a new browser window?

  3. #3
    Join Date
    Dec 2007
    Posts
    88
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Question Thanks for assisting

    Hi, no only want one. The first page is like a menu of 4 links and each link opens a new window in a non max window state. I changed it to open in current window but i want it to force max state. I don't mind about the first page. Only want the link to open and only one window in max state.

    If link in new window, what would the code be to force new window in max state.

    I want the first options but it would be nice to have both options

    regards

  4. #4
    Join Date
    Dec 2007
    Posts
    88
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Got help:

    Code:
    <script>
    function maxGoto(webpage) {
    	// Move window to top left corner then resize it to screen size
    	window.moveTo(0,0);
    	window.resizeTo(screen.width,screen.height);
    	
    	// Goto the specified web page
    	location.href=webpage;
    	return false;
    }
    </script>
    </head>
    
    <a href="#" onclick="maxGoto('http://srv8-z199/fcFlow/Home.aspx');"></a>

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
  •