As you can see here: http://jsfiddle.net/huJ95/ The scrolling stops like (5-10 pixels I believe) before the div starts (where the text is -> div starts, so the user would need to scroll up to see the beginning) Why is that? And how can I fix that? HTML/CSS in Jsfiddle ( I think is irrelavant).
JS:
jQuery(document).ready(function($) {
$("nav").on("click", "a", function(e) {
e.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top}, 500);
});
});