Results 1 to 2 of 2

Thread: Onresize and full screen

  1. #1
    Join Date
    Jun 2006
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Onresize and full screen

    Folks,

    I just spent 2 days on this and just finished coding my page so that loading and resizing automatically sizes some scrolling elements on the page. It had to be PEFECT for both FF/IE6 since IE6 doesn't support max-height, etc, and kludging it with CSS was a PITA!

    So I used javascript to get it done and I was so happyt to get it done, I had 3 glasses of WINE!!! <g>

    But then I hit F11 to full screen the browser and the *******s (neither FF or IE) do not sent the resize event!! SOMB!!

    Please tell me there is a simple solution.

    TIA

    ---
    HLS

  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

    IE and FF both fire the onresize event when the F11 key is hit. There must be some other problem. Try this:

    Code:
    <script type="text/javascript">
    onresize=function(){alert('changed');};
    </script>
    It even fires several times in IE.
    - John
    ________________________

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

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
  •