come faccio a modificare questa funzione in maniera tale che non legga il nome dei campi form ma l'id ?
Codice PHP:<script language="javascript">
function selezionatutti(){
tot=document.forms.nomeform.box.length;
if(isNaN(tot)){
ogg_box=document.forms.nomeform.box;
ogg_box.checked = true;
}
else{
for(cont=0;cont<tot;cont++)
{
ogg_box=document.forms.nomeform.box[cont];
ogg_box.checked = true;
}
}
}
function deselezionatutti()
{
tot=document.forms.nomeform.box.length;
if(isNaN(tot))
{
ogg_box=document.forms.nomeform.box;
ogg_box.checked = false;
}else
{
for(cont=0;cont<tot;cont++)
{
ogg_box=document.forms.nomeform.box[cont];
ogg_box.checked = false;
}
}
}
</script>

