facebook twitter instagram linkedin google youtube vimeo tumblr yelp rss email podcast phone blog search brokercheck brokercheck Play Pause

Form Success Redirect

Overview

After a successful form submission, you can redirect users to another page.

How To Use

To create a redirect after submitting a form you must do the following:

  • Add a success redirect input
  • Edit the value URL to where you would like the user to be redirected
  • Set the type attribute to hidden

The value URL in the input element must be absolute or relative, such as downloading a PDF from the assets library.

Markup

Add a input element with the name of success_redirectand a value to the URL you want your vistors to be redirected to. The type for the input element should be set to hidden. The redirect code must be placed above your submit button markup.

Example Code

<input name="success_redirect" value="[your-url]" type="hidden">