document.body.scrollTop is deprecated, also latest Chrome versions seem to be unstable here. The following should work:
var topPos = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0;
window.location.href = '#';
document.documentElement.scrollTop = topPos;