I'm just learning javascript (literally) and I've got a bit of JS (below) that moves page anchors 90 pixels down from the top of the page, to prevent the contents of the anchor from being overlapped by a fixed top element. When clicking links to anchors on the same page, it works beautifully.
The problem I'm having is when I click a link that points to an anchor on a different page. When the new page loads, the anchor is loaded at the top of the page and is partially hidden underneath the fixed top element.
I suspect I need some sort of onLoad event on every page that checks for anchor hashes, but I'm too new to this to figure it out.
Any help is appreciated, thanks!
Statistical info: I'm doing this for my company's web help. We have about 280+ help pages and 2,500 or so anchors. I'm hoping that adding some JS to an include or header will solve my issue.
Note: The script I'm using I found as an answer to a different stackoverflow question and is lightly modified.
$(function(){
$('a[href*=#]').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
&& location.hostname == this.hostname) {
var $target = (this.hash);
$target = target.length && target || ('[name=' + this.hash.slice(1) + ']');
if ($target.length) {
var targetOffset = target.offset().top - 90;
$('html,body').animate({scrollTop: targetOffset}, 1000);
return false;
}
}
});
});