If I put two forms on a page generates an annoying problem.
When you move from one field to another by pressing TAB, the selection jumps between the two forms.
Is there a way to overcome this obstacle?
If I put two forms on a page generates an annoying problem.
When you move from one field to another by pressing TAB, the selection jumps between the two forms.
Is there a way to overcome this obstacle?
You will need to start one form with a different tabindex so they don't have the same tabindex numbers as that's what controls where you go when you press tab.
I didn't understand how to do.
I tried in this way but I don't think is right, because it doesn't work 100%.
[gravityform id="1" tabindex="1"]
[gravityform id="2" tabindex="2"]
The selection jumps in the email's field.
http://www.cinastart.com/progetto
Each field has a tab index. You need to start the second forms tab index higher than the total number of fields in the first form plus one. So if there are ten fields, then the second form embed has to start at 11.
The correct solution is this. I do not know why but it works.
[gravityform id = "1" tabindex = "3"]
[gravityform id = "2" tabindex = "6"]
Thanks for the support.
I'm assuming there are less than three fields in your first form? Your first form doesn't need a tabindex call, as it will start with the number one by default.