I have a form with several <input>
text boxes. They work fine via a post request.
Each one is enclosed in its own div, which slides up (using slideUp();) what it has been filled in. However, any text box whose div that has undergone slideUp(); (and is therefore invisible) does not pass its variable on to the next page when the form has been submitted. Does anyone have any advice on how the slideUps can continue but all data is passed on? Many thanks.
Code
<form id="word_list" method="post" action="results.php">
//All PHP removed for clarity
//The div with id="word1" experiences slideUp();
//I know this isn't a valid way to comment!
<div align="center" class="input_box" id="div1">
<input type="text" id="word1" name="word1" /></div>
<div align="center" class="input_box"><input type="submit" /></div>
</form>