| |||
Re: checkbox Algo así te puede servir? <pre> <html> <head> <title> Uno solo </title> <script language="JavaScript"> <!-- function checkForm(frm){ var x = 0; for (i=0;i<document.forms[ 0 ].length;i++){ if ((document.forms[ 0 ].elements[ i ].type) == "checkbox"){ x = x + (document.forms[ 0 ].elements[ i ].checked)?1:0; } } if (x < 1){ alert("No marcó ninguno"); return false; } else document.forms[ 0 ].submit(); } //--> </script> </head> <body bgcolor="#FFFFFF"> <form method="post" action="" onsubmit="return checkForm(this);"> Marcar: <input type="checkbox"> <br> <input type="checkbox"> <br> <input type="checkbox"> <br> <input type="checkbox"> <br> <input type="checkbox"> <br> <input type="checkbox"> <br> <input type="checkbox"> <br> <input type="checkbox"> <br> <input type="checkbox"> <br> <input type="checkbox"> <br> <input type="checkbox"> <br> <input type="checkbox"> <br> <input type="checkbox"> <br> <input type="checkbox"> <br> <input type="checkbox"> <br> <input type="submit"> </form> </body> </html> </pre> OJO!! donde dice [ 0 ] y [ i ], sacale los espacios en blanco. Acá los puse porque sino no me toma bien el código :( <hr noshade size=1 color="#000000"><img src="http://www.gograph.com/Images-8712/ClipArt/cat03.gif" height="50" border=0 align="absmiddle"> <font size="2" face="verdana" color="#000000">bet[/CODE] |