STOOOOOOOOOOOOOOOOOOPPPPPPPPPPPPPPPPPP


ho un dubbio........

Provi a fare così invece di button metti submit vedi che su mozilla non lo disattiva

codice:
<html>
<script language="javascript">
function Disattiva(valore)
{
	for(i=0;i<document.forms[0].elements.length;i++)
	{
		if(document.forms[0].elements[i].type=="submit")
		{
			document.getElementById(valore).disabled = true;
		}
	}
}
</script>
<body>

<form name="nForm">
  <input type="submit" value="Puls" name="Puls" id="Puls" onclick="Disattiva('Puls')">
  <input type="submit" value="Pulsante1" name="Pulsante1" id="Puls" onclick="Disattiva('Puls')">
</form>

</body>

</html>