<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jump to location in page</title>
<style>
html {
scroll-behavior: smooth;
}
</style>
</head>
<body>
<a id="jump2" href="#jump1">Jump There</a>
<br>
// OnClick()
<div onclick="location.href='#jump1'">Go to</div>
<div id="disp" style="font-size:2vw"></div>
<script>
str = "";
for (i=0 ; i<50 ; i++)
str += i+": - - - - - - - - - - - - - - - - - - - - - - <br>";
document.getElementById("disp").innerHTML = str;
</script>
<div id="jump1">End of page</div>
<a href="#jump2">Jump Back</a>
</body>
</html>