I have two forms on this page:
http://thewellmarketplace.com/meals/
If you start filling out the first one, pressing TAB to go to the next field does not bring you to the next field, but to a field in the next form.
How can I fix this?
I have two forms on this page:
http://thewellmarketplace.com/meals/
If you start filling out the first one, pressing TAB to go to the next field does not bring you to the next field, but to a field in the next form.
How can I fix this?
You need to set the starting tabindex for each form. You can find out how to do that here.
Thanks for the reply! Perfect.
Added this to my functions.php file and it works fine now:
add_filter("gform_tabindex", create_function("", "return false;"));