Tengo el siguiente código y quiero mostar u ocultar un div según este activo o no...pero segun el alert que he puesto siempre es on el valor de check...
como puedo solucionar para que cuando este activado el check lo enseñe y si no lo oculte...:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<script>
function comprobarCheck() {
alert(document.beneficios.ch1.value);
if(document.beneficios.ch1.value=='on')
{
alert("entro en if");
document.getElementById("divEstoy").style.display= 'block';
}else{
alert("entro en else");
document.getElementById("divEstoy").style.display= 'none';
}
}
</script>
<title>Insert title here</title>
</head>
<body>
<form name="beneficios">
<table>
<tr><td>
<input name="ch1" id="ch1" type="checkbox" onclick="comprobarCheck()"/>
<div id="divEstoy">
<label>estoy</label>
</div>
</td>
</tr>
</table>
</form>
</body>
</html>