Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a page operation that uses something like:

$('#thetable tbody').replaceWith(newtbody);

in an ajax callback. Sometimes, if the user had scrolled the page down, this operation has the understandable side effect of scrolling the page back up. But the replacement appears seamless to the user so it's a bit annoying to have to scroll back down again. And since the newtbody normally has the same vertical height as the one it replaced, we should be able to make the script do it instead.

Now, since I found that executing:

$('body').scrollTop(300);

from the JS debugger console does what I hoped it would, I thought the simple remedy would be:

var scrollsave = $('body').scrollTop();
$('#thetable tbody').replaceWith(newtbody);
$('body').scrollTop(scrollsave);

but no joy. I haven't resorted to jQuery.ScrollTo yet.

share|improve this question
That should work. Can you post a demo? Which element is scrollable? – SLaks Jan 5 '10 at 20:56
Only the page is scrolled. No elements within the markup are scrollable. I'll see what I can do about a demo. – fsb Jan 5 '10 at 21:16

4 Answers

up vote 7 down vote accepted

We had the exact same problem, and the following code works great...

var scroll = $(window).scrollTop();
// yada
$("html").scrollTop(scroll);
share|improve this answer
I tried it. Also no luck. Debugging shows that no matter what I use as selector in the first line, be it window, "body", "html", etc., the value returned by scrollTop(...) is always zero. Odd! Could the context of being in a anonymous callback possibly affect that? – fsb Jan 5 '10 at 21:15
That's weird. Scroll down on this page. Paste this in your browser address bar and press enter: javascript:alert($(window).scrollTop()); It works fine for me here on IE8. – Josh Stodola Jan 5 '10 at 22:17
There's something whacky about my pages that's preventing this from working. But I think your answer is correct for most reasonable pages. – fsb Apr 29 '10 at 10:11
I think I just found an issue here: If you develop and experiment with setting scrolling position, remember that the browser tries to be clever and tries to restore previous scrolling positions. In Chromium (version of Ubuntu 12.04), reloading (Ctrl-R) doesn't do the trick, I have to retype (Ctrl-L Enter) the URL. – Felix Rabe Jul 6 '12 at 16:16
var position= $(window).scrollTop();

//some things here

$(window).scrollTop(position);

It worked for me in both IE8 and FF.

share|improve this answer

Be sure to use return false; to terminate your function(){} construct.

The event trigger may be trying to execute the default action of the target DOM element i.e., < a href="" >;

share|improve this answer

Try this: http://jsfiddle.net/utTt4/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.