Réponse acceptée !
A la fin de ta page html, tu peux rajouter le script suivant:
<script>
var inputElem = document.getElementsByTagName("input");
for(i=0;i<inputElem.length;i++){
if(inputElem[i].type="checkbox"){
inputElem[i].checked = false;
}
}
</script>
C'est une boucle sur tous les éléments "input", qui décoche tous les "input" du type "checkbox"...
The SMURF
the_little_smurf@yahoo.fr
Enjoy the life, don't waste your time in front of your computer