Title: Page break button
Last modified: October 25, 2023

---

# Page break button

 *  Resolved [PB](https://wordpress.org/support/users/ohtusabes/)
 * (@ohtusabes)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/page-break-button/)
 * Hi. Is there any possibility to customize different buttons for each page break?
   I mean, one for page 1/2, other for page 2/2, page 3/3, etc. Thanks un Advance.
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fpage-break-button%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 5 replies - 1 through 5 (of 5 total)

 *  Plugin Author [codepeople](https://wordpress.org/support/users/codepeople/)
 * (@codepeople)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/page-break-button/#post-17151206)
 * Hello [@ohtusabes](https://wordpress.org/support/users/ohtusabes/),
 * Yes, you can.
 * You can insert three buttons in the form and enter the following pieces of code
   as their onclick events:
 *     ```wp-block-code
       GOTOPAGE(0, this.form);
       ```
   
 *     ```wp-block-code
       GOTOPAGE(1, this.form);
       ```
   
 *     ```wp-block-code
       GOTOPAGE(2, this.form);
       ```
   
 * As you can see the pages indexes begin at zero.
 * Best regards.
 *  Thread Starter [PB](https://wordpress.org/support/users/ohtusabes/)
 * (@ohtusabes)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/page-break-button/#post-17151295)
 * Hi @’codepeople,
 * That’s great. Thank you very much.
 *  Thread Starter [PB](https://wordpress.org/support/users/ohtusabes/)
 * (@ohtusabes)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/page-break-button/#post-17152667)
 * Hi [@codepeople](https://wordpress.org/support/users/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.
 *  Plugin Author [codepeople](https://wordpress.org/support/users/codepeople/)
 * (@codepeople)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/page-break-button/#post-17152743)
 * Hello [@ohtusabes](https://wordpress.org/support/users/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:
 *     ```wp-block-code
       <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](https://wordpress.org/support/users/ohtusabes/)
 * (@ohtusabes)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/page-break-button/#post-17153177)
 * Hi [@codepeople](https://wordpress.org/support/users/codepeople/),
 * Great as usual. Thank you.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Page break button’ is closed to new replies.

 * ![](https://ps.w.org/calculated-fields-form/assets/icon-256x256.jpg?rev=1734377)
 * [Calculated Fields Form](https://wordpress.org/plugins/calculated-fields-form/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/calculated-fields-form/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/calculated-fields-form/)
 * [Active Topics](https://wordpress.org/support/plugin/calculated-fields-form/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/calculated-fields-form/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/calculated-fields-form/reviews/)

## Tags

 * [button](https://wordpress.org/support/topic-tag/button/)

 * 5 replies
 * 2 participants
 * Last reply from: [PB](https://wordpress.org/support/users/ohtusabes/)
 * Last activity: [2 years, 7 months ago](https://wordpress.org/support/topic/page-break-button/#post-17153177)
 * Status: resolved