Disable Submit Button before print the form

  • COE66
    Asked on February 15, 2018 at 7:44 AM

    Dear Jotform


    Is it possible to disable submit button before the responder click the print button?


    Thank you

  • Adrian
    Replied on February 15, 2018 at 9:51 AM

    You cannot disable the submit button before the responder clicks the print button.

    However, a workaround solution is to add an additional Submit button.

    Using CSS, you can hide the Submit button near the Print button.

    #input_2 {

        display: none

    }

    After this, you can add an additional question that asks the user did you print the form. If the answer is YES, you show the second Submit button.

    Disable Submit Button before print the form Image 10

    Disable Submit Button before print the form Image 21

    Cloned Form DEMO: https://form.jotform.com/80454262876968

    Result:

    15187062902018 02 15 15 51 08 Screenshot 32

  • COE66
    Replied on February 16, 2018 at 4:23 AM

    Thank you! awesome