Struggling with disabling copy/paste in my survey | XM Community
Skip to main content

Hi there. I have tried just about every method under the sun to disable copying/pasting in my survey, but nothing has worked. Qualtrics support explained that I’d need a custom code made. Is this something anyone would be able to help out with? Thank you in advance :)

 

Study URL: https://qfreeaccountssjc1.az1.qualtrics.com/jfe/form/SV_3Popc6aUZz81BH0

Add this code to any question on which you want to disable pasting:

Qualtrics.SurveyEngine.addOnReady(function () {
const qc = this.getQuestionContainer();

qc.querySelectorAll("input").forEach((item) => {
jQuery(item).bind("paste", function (e) {
e.preventDefault();
});
});
});

 


Hi there. I have tried just about every method under the sun to disable copying/pasting in my survey, but nothing has worked. Qualtrics support explained that I’d need a custom code made. Is this something anyone would be able to help out with? Thank you in advance :)

 

Study URL: https://qfreeaccountssjc1.az1.qualtrics.com/jfe/form/SV_3Popc6aUZz81BH0

I can see, you are using free trial account. In trial account, you can’t JS


Leave a Reply