Skip to content

Instantly share code, notes, and snippets.

@marketinview
Last active April 2, 2025 19:06
Show Gist options
  • Save marketinview/3aed47456fd28dc815cf12cd255d8d54 to your computer and use it in GitHub Desktop.
Save marketinview/3aed47456fd28dc815cf12cd255d8d54 to your computer and use it in GitHub Desktop.
Qualtrics: Prevent paste in text entry fields. Works with traditional and 'New Experience' themes. Load jQuery if using 'New Experience' #qualtrics #js #jq #text #paste
Qualtrics.SurveyEngine.addOnload(function() {
jQuery(this.getQuestionContainer()).find(".InputText, .text-input").on("paste",function() { return false; });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment