I have this code:
$('a[href*=#]').click(function() {
$('html, body').animate({
scrollTop: $($.attr(this, 'href')).offset().top
}, 500);
return false;
});
But I need a 600ms delay after click the link so my page have chance to perform other actions that I set to 500ms, thank you in advance