Redirecting Form Pages

In certain situations, institutions may want to redirect users from a Slate-hosted confirmation page to an external URL.

To redirect the user to another page upon first accessing the form:

  1. Click Forms on the top navigation bar.
  2. Select the form that should contain the redirect. The form summary page appears.
  3. Click Edit. The Edit Form popup appears.
  4. Click the Description tab.

  5. In the top ribbon, click Source. The source editor appears (with HTML displayed).
  6. Add a browser redirect by entering one of the redirect codes within the <head> tags.

    To redirect the browser immediately, without a delay:

    <script>FW.Navigate('HTTP://WWW.YOUR-URL.COM');</script>

    To redirect the browser after a specific delay (allowing the original page to briefly appear):

    <script type="text/javascript">/*<![CDATA[*/var delay = 5000; setTimeout(function(){ window.location = 'HTTP://WWW.YOUR-URL.COM'; }, delay);/*]]>*/</script>
  7. Click OK.
  8. Click Save.
Was this article helpful?
0 out of 0 found this helpful