Last active
April 2, 2025 19:06
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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