edit: using wordpress:
I have a menu button called Contact me, that leads to a contact me page.
I also have 8 pages, with a contact me form at the very bottom.
Is there a way to change that menu button name contact me, to scroll down to the end of the page in use, no matter what that page is?!
the difference here is i dont have one constant jump to point, but the bottom of any page the user is currently using.
Make the href on the anchor text point to "/contact#contact"
Then add id="contact" on your contact form. This will the hash on the anchor will be used to scroll the page to that anchor point.
Set the link for the contact me menu to href="#contactmeform"
or something similar, then wrap your entire contact form in a div with id="contactmeform"
This way the navigation link will take you to the element with that ID on the page you are on.
<body>
<a href="#bottom">Contact Me</a>
<a name="bottom">
<form id=contactMe>
</form>
</body>