I want to use Cleverreach as my newsletter provider. So I got a snippet of a form, which I put in the footer.php. It should be on every site. So… When I put my data in the form and click at the button to submit it, I got an error with XMLHttpRequest:
![]()
The user got an email, but the redirect from Cleverreach doesn’t work. Do you have a solution, that I can use Cleverreach as my newsletter provider with this form?
Here’s the AJAX-Call which is in the snippet by Cleverreach
$cr.ajax({ type: "GET", url: $cr(".cr_form").attr("action").replace("wcs", "check_email") + $cr(this).find('input[name=email]').val(), success: function(data) { if (data) { cr_email.addClass('clever_form_error').before("<div class='clever_form_note cr_font'>" + data + "</div>"); return false } }, async: false })