Buenas, estoy intentando que al pulsar un botón compruebe los distintos checkbox que hay en la web y muestre un ALERT con el atributo name de cada uno de ellos que se encuentre marcado. Mi código es el siguiente:
Código:
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function() {
$('#enviar').click(function() {
$("input[type=checkbox][checked]").each(
var id = $(this).attr('name');
function() {
alert(id);
}
);
});
});
</script>
<input name="123" type="checkbox" value="" /><br />
<input name="345" type="checkbox" value="" /><br />
<input name="567" type="checkbox" value="" /><br />
<input id="enviar" type="button" value="enviar" />
</body>
</html>
Pero no funciona. A ver si alguien podría ayudarme. Un saludo, gracias.