I have a gravity form that is being loaded by an AJAX function. For some reason, when I try to submit the form I get a 400 error /wp-admin/admin-ajax.php#gf_3:1
Following guides online I added gravity_form_enqueue_scripts(3, true);
to my header.php
which has not solved the issue.
The form works fine in the preview page. I've tested multiple forms and multiple functions, however none of my forms will submit if they were loaded via AJAX.
I have the same issue and stumbled on your question here. I am loading different forms on the same page via ajax and I think I've found the solution.
You need to localize ajax.url
Looks like GF is looking for this if the form is loaded with ajax. I think they just assume that if you loaded GF with ajax that you are using ajax.url. Instead I was using my own object to localize stuff which is probably what you did too.