I'm trying to fix so that when i press on a link on my website the new "page" will open at the top.
Trided something like this:
$(function() {
if ($(window).scrollTop() < ($(".pageWrapper").offset().top - 110)) {
$('html, body').animate({ scrollTop: $(".pageWrapper").offset().top - 110 }, 2000);
}
});
But didn't rlly work.
Any ideas? ... haha