kseosru,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
span{
display: none;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
jQuery(function($) {
$(".js-anchor").on("click", function(e) {
e.preventDefault();
$(this).delay(5000).queue(function() {
location.href = this.getAttribute("href");
})
$("span").show(1000)
})
});
</script>
</head>
<body>
<span>текст</span>
<a class="js-anchor" href="http://yandex.ru">Нажать</a>
</body>
</html>