copy protection

  • APassionForScrappinRetreats
    Asked on February 4, 2016 at 7:17 PM

    I know if I convert text on a on a form to an image, the and upload the image to the form, it will be basically copy protected.

     

    Other than that is there another way by either widget or app, etc to protect a form sheet from data being copied by "copy and paste" by someone else?

  • Chriistian Jotform Support
    Replied on February 5, 2016 at 12:55 AM

    You can inject this css to prevent a user from copying and pasting the entire text.

    #id_1{

    -webkit-touch-callout: none;

    -webkit-user-select: none;

    -khtml-user-select: none;

    -moz-user-select: none;

    -ms-user-select: none;

    user-select: none;

    }

     

    How to inject custom css

    Here's a cloned form where I tested the css. https://form.jotform.com/60350326685960

    You can also clone it to your account by following this guide: How to Clone an Existing Form from a URL