Change Text of a Button on a Specific Page

Important Update to Custom Scripting

SurveyGizmo's CustomScript Action now supports the LUA programming language. Visit our NEW Lua Scripting Resources!

Legacy Custom Scripting Language Deprecation Plans 

  1. New accounts (created after October 29, 2018) will only have the option to use Lua in scripts.
  2. As of October 29, 2018 Custom Scripting Actions will default to Lua as the scripting type in the Custom Scripting Action for accounts created before this date. You will be able to switch to the Legacy Custom Scripting; though we highly encourage using Lua.
  3. In the long term, Legacy Custom Scripting Actions will be switched to read-only. The exact date on this is to be determined; we will send notifications well ahead of time.

While we have a built-in feature to change the text of the Back, Next, and Submit buttons for the Back and Next buttons you may not wish to change the text on every page. You can change the text of a Next and Back buttons on a per-page basis with a little JavaScript!

1. Click the Add New Action button on the bottom of the page where you wish to change the button.

2. Select JavaScript.

3. Paste one of the below codes:

To change the Next button, paste the below code and replace 'NewText' with your desired text.

$(document).ready(function(){
  $('#sg_NextButton').val('NewText');
});

To change the Back button, paste the below code and replace 'NewText' with your desired text.

$(document).ready(function(){
  $('#sg_BackButton').val('NewText');
});

To change the Submit button, paste the below code and replace ''NewText' with your desired text.

$(document).ready(function(){
  $('#sg_SubmitButton').val('NewText');
});

Scripting and Other Custom Solutions

We’re always happy to help you debug any documented script that is used as is. That said, we do not have the resources to write scripts on demand or to debug a customized script.

If you have customization ideas that you haven't figured out how to tackle, we're happy to be a sounding board for SurveyGizmo features and functionality ideas that might meet your customization. Beyond this, you might want to consult with someone on our Programming Services Team; these folks might have the scripting chops to help you to achieve what you are looking for!