Re: Submit button to show in the advanced form for all tabs? (Having 3 buttons: Previous, Next and Submit)
Hi @Robert94
In the advanced form steps.
1. Select each step > Form options > Custom JavaScript
2. Insert a jquery that will create a button called Submit and perform Submit action
$(document).ready(function () {
var $input = $('<input type="button" value="Submit" />');
$input.appendTo($("body"));
});
Include form action as submit.
Hope it helps.
------------
If you like this post, give it a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users to find it.