Any good, free form processors out there that allow redirects after submission?

Hey, We have made this changes to Formcarry yesterday due to phishing attackers, We are not happy with that but we got a lot of blocking request for phishing accounts.

But you can still use our AJAX option, which is really easy to set up,
add this code snippet before your tag:

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
    <script>
    $(function(){
    $(".ajaxForm").submit(function(e){
        e.preventDefault();
        var href = $(this).attr("action");
        $.ajax({
            type: "POST",
            dataType: "json",
            url: href,
            data: $(this).serialize(),
            success: function(response){
                if(response.status == "success"){
                    window.location.href = 'http://google.com'; // change this. 
                }else{
                    alert("An error occured: " + response.message);
                }
            }
        });
    });
    });
    </script>

then add ajaxForm class to your form element, like this:
<form class="ajaxForm" action="https://formcarry.com/s/{Your Form ID}" method="POST">

I know Webflow work slightly different but we have a guide for Webflow as well:

I’m here to help you for further, don’t mind to ask anything!

1 Like