helpcenter/helpcenter.r7-office.ru/Web/js/help/scrollanchor.js

18 lines
510 B
JavaScript
Raw Normal View History

$(document).ready(function () {
function fixedHeaderOffset(hash) {
$('html, body').animate({
scrollTop: $(hash).offset().top - 71
}, 'fast');
}
var hash = location.hash;
if(hash !== '' && hash !== 'undefined') {
fixedHeaderOffset(hash);
}
$('a, td, div').on('click', function(){
var hashID = '#' + $(this).attr('id');
if(hashID !== '#' && hashID !== '#undefined') {
fixedHeaderOffset(hashID);
}
});
});