Hello @ohtusabes,
Yes, you can.
You can insert three buttons in the form and enter the following pieces of code as their onclick events:
GOTOPAGE(0, this.form);
GOTOPAGE(1, this.form);
GOTOPAGE(2, this.form);
As you can see the pages indexes begin at zero.
Best regards.
Thread Starter
PB
(@ohtusabes)
Hi @’codepeople,
That’s great. Thank you very much.
Thread Starter
PB
(@ohtusabes)
Hi @codepeople,
I realize that the buttons I mean are the “next button label”. Is there a way to customize a different label for each page? Thank you.
Hello @ohtusabes,
You can customize the labels by coding. For example, you can insert an “HTML Content” field in the form and enter the following piece of code as its content:
<script>
fbuilderjQuery(document).on('formReady', function(){
fbuilderjQuery('.pbNext:eq(0)').html('Text first button');
fbuilderjQuery('.pbNext:eq(1)').html('Text second button');
fbuilderjQuery('.pbNext:eq(2)').html('Text third button');
fbuilderjQuery('.pbNext:eq(3)').html('Text fourth button');
});
</script>
Best regards.
Thread Starter
PB
(@ohtusabes)
Hi @codepeople,
Great as usual. Thank you.