ext/hifikabin/stickybar/styles/prosilver/template/js/stickybar_goto.js
with the following, purge the browsers and testCode: Select all
jQuery ( document ).ready ( function($) {
var hash= window.location.hash
if ( hash == '' || hash == '#' || hash == undefined ) return false;
var target = $(hash);
headerHeight = 120;
target = target.length ? target : $('[name=' + hash.slice(1) +']');
if (target.length) {
$('html,body').stop().animate({
scrollTop: target.offset().top - 125 //offsets for fixed header
}, 'linear');
}
} );