You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
296 B
13 lines
296 B
5 years ago
|
$(document).ready(function(){
|
||
5 years ago
|
$(".slideDown").on('click', function(event) {
|
||
5 years ago
|
if (this.hash !== "") {
|
||
|
var hash = this.hash;
|
||
|
$('html, body').animate({
|
||
|
scrollTop: $(hash).offset().top
|
||
|
}, 1000, function(){
|
||
|
window.location.hash = hash;
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
});
|