{% extends 'base.html.twig' %} {% block wrapperClass %}campaignpage info{% endblock %} {% block body %} {% endblock %} {% block readyStateFunction %} var redirect = '{{ redirect }}'; var redirectUrl = '{{ redirectUrl }}'; $.ajax({ type: "POST", dataType: 'JSON', url: "{{ regGet('url') }}ajax/postdata/", data: {actie: 'runPixel', pixels: '{{ pixels|raw }}', location: 'after-registration'} }).done(function (response) { $("#response-div").html(response); if (redirect == 'entrysurvey' || redirect == 'custom' || redirect == 'customInternal' || redirect == 'customExternal') { setTimeout(function(){ location.href = redirectUrl; }, 3000); } $("#response-div").hide(); setTimeout(function(){ location.href = '{{ regGet('url') }}'; }, 3000); }); {% endblock readyStateFunction %}