Solved
Disabling copying of the survey and right click functions?
Hello, I am looking for how to disable the copying of the survey (including right click function) and the custom coding needed to accomplish this.
Best answer by TomG
There really isn't any way to stop someone from copying or doing screenshots of a survey. Therefore, disabling the contextmenu (right click) will, at most, only slow someone down a bit. You're fooling yourself if you think it will add any type of security.
However, if you want to go through the useless exercise, you can disable the contextmenu by adding the following to an Qualtrics.SurveyEngine.addOnload function in the header of your survey:
```
jQuery(document).on("contextmenu", function(e){
e.preventDefault();
}, false);
```
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
