Results 1 to 4 of 4

Thread: How to disable Browser Resize?

  1. #1
    Join Date
    Aug 2007
    Location
    MO USA
    Posts
    106
    Thanks
    37
    Thanked 0 Times in 0 Posts

    Question How to disable Browser Resize?

    I am planning to open my application in full screen mode - need the browser resize to be disabled.

    Would be great if someone can post a cross-browser link or script to disable browser's resize feature (the middle button on the top right corner - the button inbetween minimize and close).

    Thanks.

  2. #2
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    Code:
    function openPopUp(el) {
         var newWin = window.open('url','name','resize=no');
         newWin.focus();
    }
    Code:
    <a href="http://www.yahoo.com" onclick="openPopUp(this); return false;">Yahoo</a>

  3. #3
    Join Date
    Aug 2007
    Location
    MO USA
    Posts
    106
    Thanks
    37
    Thanked 0 Times in 0 Posts

    Default

    Just one thing -

    when i resize the parent window and click on the link, the new window opens in the same size of the parent window except without the address bar, etc. Is there a way to open the new window in a complete FULL screen irrespective of the resolution and the size of its parent browser size?!

    Thanks a lot fo the help.

  4. #4
    Join Date
    Sep 2005
    Location
    India
    Posts
    1,627
    Thanks
    6
    Thanked 107 Times in 107 Posts

    Default

    Have you used fullscreen configuration attribute while opening a new window?

    Code:
    var newWin = window.open('url','name','resize=no,fullscreen=yes, scrollbars=auto');

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
  •