I have tried to get this to work and was unsuccessful. I just want to have my mobile page views load at the top. I have tried the following.
// Method 1:
$('body').scrollTop(0);
// Method 2:
document.body.scrollTop = 0;
// Method 3:
$(window).on('beforeunload', function(){
$(window).scrollTop(0);
});
I tried here first and was unsuccessful.
I just want to always start at the top of the page when I click a link in mobile. I have no idea as to why none of these solutions work.