Bonjour,
J'ai trois radio button et je voudrais que chaque bouton affiche un tableau différent tout en cachant les autres tableau.
Merci
Frédéric
J'ai trois radio button et je voudrais que chaque bouton affiche un tableau différent tout en cachant les autres tableau.
<input type="radio" name="btn1" value="btn1" />
<input type="radio" name="btn1" value="btn2" />
<input type="radio" name="btn1" value="btn3" />
<table width="419" border="0" cellspacing="0" cellpadding="0" id="tbl1" style="display:none">
<tr>
<td>tableau 1</td>
</tr>
</table>
<table width="419" border="0" cellspacing="0" cellpadding="0" id="tbl2" style="display:none">
<tr>
<td>tableau 2</td>
</tr>
</table>
<table width="419" border="0" cellspacing="0" cellpadding="0" id="tbl3" style="display:none">
<tr>
<td>tableau 3</td>
</tr>
</table>
Merci
Frédéric