14 lines
316 B
JavaScript
14 lines
316 B
JavaScript
$(document).ready(function(){
|
|
$("a").on('click', function(event) {
|
|
if (this.hash !== "") {
|
|
event.preventDefault();
|
|
var hash = this.hash;
|
|
$('html, body').animate({
|
|
scrollTop: $(hash).offset().top
|
|
}, 800, function(){
|
|
window.location.hash = hash;
|
|
});
|
|
}
|
|
});
|
|
});
|