sstephenson (owner)

Revisions

gist: 134653 Download_button fork
public
Description:
preserving_scroll_position.js
Public Clone URL: git://gist.github.com/134653.git
Embed All Files: show embed
JavaScript #
1
2
3
4
5
6
7
8
9
10
Element.addMethods({
  preservingScrollPosition: function(element, callback) {
    element = $(element);
    var offset = element.cumulativeOffset().top - document.viewport.getScrollOffsets().top;
    callback();
    window.scrollTo(0, element.cumulativeOffset().top - offset);
    return element;
  }
});