Skip to content

Instantly share code, notes, and snippets.

@marketinview
Last active October 23, 2022 17:06
Show Gist options
  • Save marketinview/0785084450f452ac7584 to your computer and use it in GitHub Desktop.
Save marketinview/0785084450f452ac7584 to your computer and use it in GitHub Desktop.
Qualtrics: Hide Previous Button. Sometimes a previous button will not work properly. In those cases it is better to hide the previous button using the following script. This script can be used in a question or in the header if you want it to apply to the entire survey. #qualtrics #js #jq #button #previous #hide
Qualtrics.SurveyEngine.addOnReady(function() {
jQuery('#PreviousButton').hide();
});
@marketinview
Copy link
Author

marketinview commented Nov 14, 2017

See additional Qualtrics solutions at: https://qualtricswiki.tgibbons.com/doku.php

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment