Skip to content

Instantly share code, notes, and snippets.

View ljudbane's full-sized avatar

Ljudbane ljudbane

View GitHub Profile
@z2015
z2015 / preventrefresh.js
Created July 21, 2016 08:28
Prevent automatic browser scroll on refresh
$(window).on('unload', function() {
$(window).scrollTop(0);
});
window.onunload = function(){ window.scrollTo(0,0); }
if ('scrollRestoration' in history) {
history.scrollRestoration = 'manual';
}