$(document).ready(function(){ $(".slideDown").on('click', function(event) { if (this.hash !== "") { var hash = this.hash; $('html, body').animate({ scrollTop: $(hash).offset().top }, 1000, function(){ window.location.hash = hash; }); } }); });