modification d'un menu javascript
Bonjour,
J'ai actuellement un module avec des checkbox à cocher et un bouton submit,
j'aimerais remplacer ceci par une image cliquable qui aurait le même effet.
Voici une copie du code actuellement en place :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <table border="0" width="900">
<tr>
<td width="300"><input type="checkbox" name="am2">AM2</td>
<td width="300"><input type="checkbox" name="am3">AM3</td>
<td width="300"><input type="checkbox" name="775">775</td>
</tr>
<tr>
<td width="300"><input type="checkbox" name="1155">1155</td>
<td width="300"><input type="checkbox" name="1156">1156</td>
<td width="300"><input type="checkbox" name="1366">1366</td>
</tr>
</table>
<table border="0" width="900">
<tr>
<td><input type="submit" name="envoyer_socket" value="Valider le socket">
</form></td>
</tr>
</table> |
Merci par avance pour votre aide.
Jeff