Ver Mensaje Individual
  #1 (permalink)  
Antiguo 06/05/2011, 08:50
feeeeeR
 
Fecha de Ingreso: abril-2011
Mensajes: 18
Antigüedad: 13 años, 8 meses
Puntos: 1
Problema con input type checkbox

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.