I have a page operation that uses something like:
$(\'#thetable tbody\').replaceWith(newtbody);
in an ajax callback. Sometimes, if the user
var position= $(window).scrollTop(); //some things here $(window).scrollTop(position);
It worked for me in both IE8 and FF.