Contact Form Thank You Top of Page

前端 未结 1 1678
长发绾君心
长发绾君心 2021-01-22 05:24

I have a contact form that is fully functional and displays a \"Thank You\" message when submitting. The only problem is that the thank you message displays above the form so it

1条回答
  •  無奈伤痛
    2021-01-22 05:56

    Why don't you set the ID of your form, and then direct to the anchor in your form action:

    This will basically submit your form and reload your URL as:

    http://impressify.co/business-writing.php#my-form

    And it should bring you right down to where you want to be, it worked in a simple test I set up.

    Or I suppose instead of setting the ID of the form to "my-form" you could could set the ID of your

    tag that contains your confirmation message to something like "form-confirmation-message" and set the action of your form to action="#form-confirmation-message"

    This would probably be the best option as it would bring you right to your message instead of the form, which is just close to your message.

    0 讨论(0)
提交回复
热议问题