Hi! I’m very inexperienced with qualtrics and I could use some help with a specific point:
I want to make a manipulation by asking participants to write a paragraph in the text entry type of question. However, I’m afraid they might use chatGPT to produce the text and fail my manipulation. Therefore, how do I create and insert a code that makes it not possible for people to copy & paste texts in their responses?
I saw someone else here using the following code on JS, but it didn’t work for me:
jQuery("#"+this.questionId+" .InputText:eq(0)").on("cut copy paste",function(e) {
e.preventDefault();
});
This is the link to where they mentioned this code:
Thank you!