Hello @eduardonie
You can move next and forward with your own buttons by calling the operation fbuilderjQuery.fbuilder.goToPage
The attribute of this operation is an object with the properties:
form, the current form object.
from, the index of the current page, beginning from zero.
to, the index to the page to jump.
For example, if you insert a button in the first page and you want to jump to the third page, insert a button in the form with the following piece of code as its onclick event:
var f = this.form;fbuilderjQuery.fbuilder.goToPage({form:f,from:0,to:2});
Best regards.