Redirect URL Field

Redirect URLs enable custom redirection after a successful form submission in Jamform.

What is a Redirect URL?

A Redirect URL is a custom URL specified in your form. When a form with a "_redirect" field is successfully submitted, Jamform redirects the user to this URL instead of the default success page.

Setting Up a Redirect URL

  1. In your form, add a hidden input field with the name _redirect.
  2. Set the value of this field to the desired redirection URL.
  3. Upon successful submission, Jamform will redirect the user to the specified URL.

Example HTML:

<form action="YOUR_JAMFORM_ENDPOINT" method="post">
  <!-- Other form elements -->
  <input type="hidden" name="_redirect" value="https://your-redirect-url.com" />
  <button type="submit">Submit</button>
</form>

_Notes:

  • The _redirect field will not show up in submission emails or webhook data.