Redirect URLs enable custom redirection after a successful form submission in Jamform.
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.
_redirect
.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:
_redirect
field will not show up in submission emails or webhook data.