APIs & Integrations

Jeremy_Hess
Membro

Form API Not Requiring Fields on Submit

Hi All,

Site: http://getcloudify.org/downloads/get_cloudify.html

If you click to download one of our packages (orange buttons), you will get a modal popup form. For some reason, the form allows the user to simply click the “Download Now” button without requiring any fields to be filled in.

We are not embedding the form as we are serving the file for download on submit and then redirecting, which it seems is not possible with the simple embed code.

Please assist and let me know what code you need to see to help.

Thanks,
Jeremy

0 Avaliação positiva
2 Respostas 2
zwolfson
HubSpot Employee
HubSpot Employee

Form API Not Requiring Fields on Submit

Hi @Jeremy_Hess ,

I think I found the issue in a race condition.

At line 278 on http://getcloudify.org/downloads/get_cloudify.html where you have the handler

           track_cli_contactForm(e);
           //$('#myModal').modal('hide');
       });``` 
that `track_cli_contactForm` function fires the `downloadCLIDownload` function which hides the modal. That is beating our validation and `onFormSubmit` handler.  It works every once in a while (you can see my contact in your system) which is another pointer to a race condition.

Thanks,
Zack
0 Avaliação positiva
Jeremy_Hess
Membro

Form API Not Requiring Fields on Submit

Thanks, Zack. It looks like you’re right and the issue has been fixed :slight_smile:

Appreciate it!
Jeremy

0 Avaliação positiva