tengo el siguiente codigo:
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"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<form id="form1" name="form1" method="get" action=""> <input name="campos[]" type="checkbox" id="checkbox" value="1" onchange="enviar();"/> <input name="campos[]" type="checkbox" id="checkbox2" value="2" /> <input name="campos[]" type="checkbox" id="checkbox3" value="3" /> <input name="campos[]" type="checkbox" id="checkbox4" value="4" /> campo 4
<input type="submit" name="button" id="button" disabled value="Enviar" />
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 :)