how to force page down to see AJAX return info?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Geoff Cox

    how to force page down to see AJAX return info?

    Hello

    I have a <divin which the returned AJAX info appears but IE and FF
    seem to deal with it differently. IE at the moment places it to the
    right of a set of other <div>s whilst it is just below the bottom of
    the page with FF.

    Is it possible to force the page to move down so that the returned
    info is visible without expecting the user to scroll down to find it?

    Cheers

    Geoff
  • Martin Honnen

    #2
    Re: how to force page down to see AJAX return info?

    Geoff Cox wrote:
    I have a <divin which the returned AJAX info appears but IE and FF
    seem to deal with it differently. IE at the moment places it to the
    right of a set of other <div>s whilst it is just below the bottom of
    the page with FF.
    >
    Is it possible to force the page to move down so that the returned
    info is visible without expecting the user to scroll down to find it?
    You can call scrollIntoView on your div e.g.
    divElementObjec t.scrollIntoVie w(true);


    --

    Martin Honnen

    Comment

    • Geoff Cox

      #3
      Re: how to force page down to see AJAX return info?

      On Mon, 05 May 2008 16:19:01 +0200, Martin Honnen <mahotrash@yaho o.de>
      wrote:
      >Geoff Cox wrote:
      >
      >I have a <divin which the returned AJAX info appears but IE and FF
      >seem to deal with it differently. IE at the moment places it to the
      >right of a set of other <div>s whilst it is just below the bottom of
      >the page with FF.
      >>
      >Is it possible to force the page to move down so that the returned
      >info is visible without expecting the user to scroll down to find it?
      >
      >You can call scrollIntoView on your div e.g.
      divElementObjec t.scrollIntoVie w(true);
      Thanks Martin!

      Cheers

      Geoff

      Comment

      Working...