I\'ve noticed that if you are on a page and you have scrolled down a good bit, if you refresh the page, most browsers will jump you back down to your position. Is there any way
Just to update what @josetapadas said, for recent versions it would be better to use the unload function instead of beforeunload this will be
unload
beforeunload
$(window).on('unload', function() { $(window).scrollTop(0); });