I there a way in javascript to make the page jump to a specific location on the page, such as
You can set the location.hash property, like this:
window.location.hash = "jump_to_this_location";
You can give it a try here.