Is it possible to make a form without a submit button?

  • greenvilletechmarketing
    Asked on June 15, 2020 at 1:19 PM

    We have a form we want people to be able to complete then print to send elsewhere. Is there a way to have a print button and remove the submit button?

  • Ivaylo JotForm Support
    Replied on June 15, 2020 at 3:05 PM

    Yes, you can easily achieve this. You should inject the following CSS code in your form:

    button.form-submit-button {

        display: none;

    }

    In order to inject the CSS code, you can follow this guide:

    https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    You can clone and test my form from here:

    https://form.jotform.com/201665866945974

    Let us know if you need any further assistance.

  • greenvilletechmarketing
    Replied on June 15, 2020 at 3:10 PM

    Perfect - thanks!