I have a page that has a fair amount of content, followed by a form that consists of php + html.
The problem I am having when the user hits submit is that the page suddenly scrolls UP to the top of the page (to the content, NOT the form)
-----------------
Content stuff --> 2. jumps to here
Form
Submit button --> 1. press this button
-----------------
What I would like is for the page to stay where the form is so that I can process the information and display whatever I would like (say, a display with confirmation information) without the user having to scroll down the page after they press the submit button.
With regular links I get around this by making anchor tags but I am not sure how to deal with this issue with submit buttons...