Use redirect scripts to send form visitors from a Slate-hosted page to another page or an external URL. You can redirect from a confirmation page after form submission, or redirect when someone first opens the form.
Redirecting from a confirmation page to an external URL
To redirect visitors from a Slate-hosted confirmation page to an external URL:
Go to Forms.
Select the form that should contain the redirect, or create a new one.
Select Edit Communications.
Select Edit Mailing for the confirmation page communication.
Select Edit Message.
Select Source in the editor toolbar to open the source code view.
Enter one of the following redirect scripts immediately after the
<head>tag in the form's source content:Redirect after a delay, showing the original page for the length of time you specify:
<script type="text/javascript"> var delay = 5000; setTimeout(function(){window.location = 'https://www.your-url.com'; }, delay); </script>Redirect immediately, with no delay:
<script type="text/javascript"> var delay = 0; setTimeout(function(){ window.location = 'https://www.your-url.com'; }, delay); </script>
Select OK.
Select Save.
Redirecting to another page when opening a form
To redirect visitors to another page when they first open the form:
Go to Forms.
Select the form that should contain the redirect, or create a new one.
Select Edit to open the Edit Form pop-up.
Select the Description tab.
Select Source in the editor toolbar to open the source code view.
Enter one of the redirect scripts from the previous section immediately after the
<head>tag in the form's source content.Select OK.
Select Save.
.png?sv=2022-11-02&spr=https&st=2026-05-11T17%3A33%3A38Z&se=2026-05-11T17%3A44%3A38Z&sr=c&sp=r&sig=UvaPZRdyarJPqteDGcan4G9SW3X7DtkIf%2Fr9MWogKt8%3D)