Auto Submission Not Working - Global Countdown

  • ANTInternational
    Asked on October 11, 2016 at 5:57 PM

    I am using Global Countdown on my form. I have set it to auto submission.

     

    When the time runs out and if I am on welcome page, the auto submission works.

     

    However, when I am on page 1(Introduction) when timer runs out, it goes to the next section but doesn't auto submit?

     

    Can you check and tell me why this is happening?

  • jonathan
    Replied on October 11, 2016 at 9:30 PM

    I was able to reproduce the issue when I test your form https://www.jotform.com/62842465269465

    It seems the widget will need the Submit button to be in the page to trigger the auto submit script.

    You can workaround on the limitation by adding another Submit button on the 2nd page and just hide it with CSS.

    Example:

    Auto Submission Not Working   Global Countdown Image 1 Screenshot 30

     

     

     

    Here is my test form version https://form.jotform.com/62847923130961

    I hide the submit button using this CSS code.

    #id_22 {

    height: 1px !important;

    visibility : hidden;

    }

    --

    Auto Submission Not Working   Global Countdown Image 2 Screenshot 41

    Hope this help. Let us know if you need further assistance.