I know there are many examples of onchange already, but I feel like I'm doing something wrong as they do not work...
I have two tables and want to show one depending on what they choose from the dropdown menu.
<select name="test" id="test" onchange="" size="1">
<option value="0">Select Table...</option>
<option value="1">Table 1</option>
<option value="2">Table 2</option>
</select>
Tables
<table id = "t1" border="1">
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
<table id = "t2" border="1">
<tr>
<th> 1</th>
<th> 2</th>
</tr>
<tr>
<td> 1, 1</td>
<td> 1, 2</td>
</tr>
<tr>
<td> 2, 1</td>
<td> 2, 2</td>
</tr>
</table>
What should I place in the onchange section so that it shows the table that is chosen?
I am using jQuery as well, and know that I can call the show() and hide() functions of that but somehow I don't know how I would do that with the onchange="" part... any ideas?
Thank you!
Select Table...andTable 1are usingvalue="0"in your<option>s– Stephen P Jul 23 '12 at 17:24