Submit Button
After I display the thank you for submitting can I automatically route the user to a website?
-
Official comment
ANSWER FROM SHORTSTACK SUPPORT: This can be done with custom code. Add the following code to a Code Widget:
<script type="text/javascript">
$(function(){
$('.ss_form').bind('success.form', function() {
window.top.location.replace("URL_HERE");
});
});
</script>You will need to insert your website URL where it reads URL_HERE.
NOTE: We don't recommend using this code if you publish your campaign to Facebook.
Comment actions
Please sign in to leave a comment.
Comments
1 comment