Refresh your form a second after you sent it so it can be sent again with this code snippet.
You will need to change the form ID to a name of your choice. You change the ID of an element here and then change it in the code where highlighted.
Then place this code on the header of the page the form is on.
<script>
var Webflow = Webflow || [];
Webflow.push(function () {
$("#YourID goes Here").submit(function (event) {
console.log('refreshing in 1 second');
setTimeout(function () { location.reload(true); }, 1000);
});
});
</script>
Get notifications, advice and nocode updates.