Prevent essay text box copy/paste | XM Community
Skip to main content
Solved

Prevent essay text box copy/paste


Forum|alt.badge.img+3

I am trying to add JavaScript code to prevent essay text entry copy/paste from any source to the online browser-based survey.  I have already read the many attempts to explain on this site, but many appear to leave out where and how to enter the script and/or the entire needed code. 

 

Below is what I have and it. does not currently prevent copy/paste.   

 

Please do NOT refer to other articles and please provide a detailed step by step if at all possible.

 

Question Setup:

 

Code Entered:

 

Best answer by TomG

This will work with traditional and ‘New Experience’ themes (as long as jQuery is loaded for ‘New Experience’):

Qualtrics.SurveyEngine.addOnload(function() {
	jQuery(this.getQuestionContainer()).find(".InputText, .text-input").on("paste",function() { return false; });
});

 

View original

2 replies

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 5938 replies
  • Answer
  • April 2, 2025

This will work with traditional and ‘New Experience’ themes (as long as jQuery is loaded for ‘New Experience’):

Qualtrics.SurveyEngine.addOnload(function() {
	jQuery(this.getQuestionContainer()).find(".InputText, .text-input").on("paste",function() { return false; });
});

 


Forum|alt.badge.img+3

Tom, you get Five Stars from me!  It worked on the first try. Thank you very much for the assistance.

 

For anyone else with this issue, see images below on setup and location of the code.

 

 

 

 


Leave a Reply