I\'ve read through many related threads but none of them seem to provide a solution.
What I\'m trying to do is handle the scrollbar intelligently in my Backbone.js app.
A simple solution: Store the position of the list view on every scroll event in a variable:
var pos; $(window).scroll(function() { pos = window.pageYOffset; });
When returning from the item view, scroll the list view to the stored position:
window.scrollTo(0, pos);