Cita:
Iniciado por Manuellama <html>
<head>
</head>
<body>
<script>
function cambiarvalor(valor){
if (valor==0){
valor = 1;
}else{
valor =0;
}
document.getElementById('id').value = valor;
}
</script>
<form id="form1" name="form1" method="get" action="">
<input name="id" id="id" type="hidden" value="1" />
<table width="198" border="1" >
<tr>
<td onclick="cambiarvalor(document.getElementById('id' ).value);" > </td>
</tr>
</table>
</form>
</body>
</html>
Gracias...por tu colaboración...el problema ha sido solucionado....