Results 1 to 3 of 3

Thread: Browser Window edit*

  1. #1
    Join Date
    Sep 2005
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Browser Window edit*

    browser problems: i want my window to pop up and have it disable the resize button on my website and also would like to stop people being able to resize it via mouse, thanks, if you could reply with the scripts then that would be great!

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    In your window.open() statement, use the resizeable=0 parameter in with the other optional settings like width, location, etc., ex:
    Code:
    window.open('page.htm', 'winName', 'width=100, height=150, resizeable=0')
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Dec 2004
    Location
    UK
    Posts
    2,358
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by insane
    browser problems: i want my window to pop up and have it disable the resize button on my website and also would like to stop people being able to resize it via mouse
    Why? If you get the size right, no-one will bother trying to resize the browser. However, if you don't, they might need to. The same goes for scrollbars.

    Mike

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
  •