I have a long form, which I broke into 6 steps. When the form is loaded, all steps are loaded, but only the first step is displayed. The rest have CSS display:none , so they are hidden. Upon completion and verification of the step using Javascript, the current step is set to display:none , and the new step is set to display:block . In the last step, the user submits the form. However, as expected, only the fields in the display:block element on the page are represented. All filled fields in elements with display:none ignored.
Is there a way to send fields inside display:none elements?
If not, is there any other way to achieve the same effect?
javascript css forms
Nick Petrie Nov 29 '11 at 10:08 2011-11-29 22:08
source share