Código HTML:
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" /> </head> <body> <form id="form1" name="form1" method="get" action=""> <input name="campos[]" type="checkbox" id="checkbox" value="1" onchange="enviar();"/> campo 1<br /> <input name="campos[]" type="checkbox" id="checkbox2" value="2" /> campo 2<br /> <input name="campos[]" type="checkbox" id="checkbox3" value="3" /> campo 3<br /> <input name="campos[]" type="checkbox" id="checkbox4" value="4" /> campo 4 <br /> <input type="submit" name="button" id="button" disabled value="Enviar" /> </form> </body> </html>
lo que necesito es hablitar el boton "button" cuando cualquiera de los checkbox sea marcado.
no son solo 4 checkbox pueden ser x checkbox.
espero que me puedan ayudar, muchas gracias :)