New web app. Form to HTML for Pavlovia

Thanks @wakecarter, I have successfully added a form to my Pavlovian experiment!
I am trying to fix the duration of the form to 100 sec by adding the following codes (Download Time Before the Experiment Starts - #14 by MNentwich) to EACH FRAME, however, the responses couldn’t be saved if the submit button is not pressed.

if ((t > 100)) {
$(‘iframe’).each(function(index) {
$(‘#iframe-o’).remove();
});
continueRoutine = false;
}

I noticed that responses are only saved after the Submit button is pressed (from the HTML codes)…are there any ways to remove the submit button and force the form to remain on the screen for 100sec, and save the responses (no matter if all questions are answered)? (this is feasible in the form component in local experiment)