Home > Mobile >  Why my form fields are not getting submitted?
Why my form fields are not getting submitted?

Time:05-05

I used a ready made step by step wizard script but the form fields are not getting submitted. What could be the issue ? The JS is triggering fine in the end but its not fields are not showing.

enter image description here

It's because you have two <form> elements. You probably want to delete the first one and change the action="test.php" of the second form that actually contains your questions.

CodePudding user response:

The first thing I noticed is that your submit/next buttons are outside and therefor not associated with the form.

  • Related