Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/04/2006, 05:21
Avatar de dogduck
dogduck
 
Fecha de Ingreso: enero-2006
Ubicación: ¿Atlantida, Hesperides, Islas afortunadas?
Mensajes: 2.231
Antigüedad: 19 años, 1 mes
Puntos: 19
Mira a ver si te funciona algo como esto
Código HTML:
<html>

<head>
<title>check box</title>
<script>
function salta(){
if (C1.checked) window.location="http://servidor/pagina.php"
}
</script>
</head>

<body>

<p><input type="checkbox" name="C1" value="ON" onclick="salta()">Check Box</p>

</body>

</html>