I will be using typeform as an assessment tool, my aim is to restrict users to copy the question text. Is there a feature that allows this?
Answered
Can we set the question form, so that users cannot copy the question text?
Best answer by mathio-tf
Hello
I dont think Typeform will provide such feature out of the box.
However there might be a hacky solution to your issue. You can use Google Tag Manager (GTM) in your typeform.
- Setup a Google Tag Manager account (if you dont have one already)
- Connect GTM to your typeform
- Add custom HTML tag in GTM with the following code:
<style>
body {
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
</style>
The user-select CSS property will prevent users from selecting the text.
Since this is hacky solution there is no guarantee this will not break some of your typeform features.
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.