puse esto y no me funciona y si me funciona cuando pongo solo un dato checked="checked" pero si lo borro y ninguna casilla esta activada no me funciona
mil gracias
Código Javascript
:
Ver original<!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=utf-8" />
<title>Documento sin título</title>
<script type="text/javascript">
function selectall(form)
{
var formulario = eval(form)
for (var i=0, len=formulario.elements.length; i<len ; i++)
{
if ( formulario.elements[i].type == "checkbox" )
formulario.elements[i].checked = formulario.elements[0].checked
}
}
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<input name="a" type="checkbox"/>
<br />
<input type="checkbox" name="b" />
<br />
<input type="checkbox" name="c" />
<br />
<input type="checkbox" name="d"/>
<br />
<input type="submit" name="button" value="seleccionar todos" />
</form>
<input type="checkbox" onclick="selectall(document.forms[0])" />
</body>
</html>