Skip to content

Instantly share code, notes, and snippets.

@muhfaris
Created October 12, 2016 23:26
Show Gist options
  • Save muhfaris/4837db12ceafbc9d7269cd095e6d183e to your computer and use it in GitHub Desktop.
Save muhfaris/4837db12ceafbc9d7269cd095e6d183e to your computer and use it in GitHub Desktop.
Scroll kembali ke atas setelah refresh, jadi detelah di reloade halamannya. scroll yang tadinya di bawah kembali ke atas
$(document).ready(function(){
$('html, body').scrollTop(0);
$(window).on('load', function() {
setTimeout(function(){
$('html, body').scrollTop(0);
}, 0);
});
});
//or
jQuery(document).ready(function($){
$('html, body').scrollTop(0);
$(window).on('load', function() {
setTimeout(function(){
$('html, body').scrollTop(0);
}, 0);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment