Hey I'm creating a site that allows you to dynamically go through select lists by going through categories of alcohol. For instance when a user clicks on rum a list of Rum containing Bacardi Rum and Captain Morgan, etc. is shown in a new slect lists. The user can then click on this specific alcohol which adds it to a text area. They then can click submit which does some database queriesb which are kinda supposed to be secret soBut on IE6 the submit button won't do anything and I'm wondering if thats a common issue. It's a pretty basic thing it just has a text area with method post and a php script for the action. Here's the code IE6 can do all of the dynamic forms fine it just won't submit them to the next page.
<div class="c"><table class="n"><tr><th class="n">
<select id="list1" size="11" style="width:190px" >
<option value="Beer">Beer</option>
<option value="Bourbon">Bourbon</option>
<option value="Brandy">Brandy</option>
<option value="Gin">Gin</option>
<option value="Liqueur">Liqueur</option>
<option value="Rum">Rum</option>
<option value="Scotch">Scotch</option>
<option value="Tequila">Tequila</option>
<option value="Vodka">Vodka</option>
<option value="Whiskey">Whiskey</option>
<option value="Wine">Wine</option>
</select></th><th class="n">
<button onclick="remove();add2list('list1','list2');"> --> </button><br/>
<th class="n"><select id="list2" size="20" style="width:190px">
<option></option></select> <button onclick="addlist('list2','list3');"> --> </button> <form id="submit" action="returnAlcohol.php" method="POST"><textarea id="list3" name="message" rows="5" cols="45"></textarea>
</select><button>SUBMIT</button></th></tr></form><br/>
</tr>
</div>



But on IE6 the submit button won't do anything and I'm wondering if thats a common issue. It's a pretty basic thing it just has a text area with method post and a php script for the action. Here's the code IE6 can do all of the dynamic forms fine it just won't submit them to the next page.




Dan Schulz you will be missed 
Bookmarks