<button type=\"submit\" class=\"next\" value=5 name=\"step\">Далее</button>
<html>
<head>
...
</head>
<body>
<div id="head"></div>
...
<button type=\"submit\" class=\"next\" value=5 name=\"step\" onclick="location.href='#head'">Далее</button>
</body>
</html>
<button type=\"submit\" class=\"next\" value=5 name=\"step\" class="to-top">Далее</button>
<script>
$(\".to-top\").click(function() {
$(\"html, body\").animate({ scrollTop: 0 }, \"slow\");
return false;
});
</script>