Código PHP:
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" /> <script type="text/javascript" src="dias.js"></script> </head> <body> <form action="../../../bacex.php" method="post" id="search"> <div class="field-holder"> <input name="busca" type="text" class="field" title="Search" /> </div> <input type="submit" class="button" value="Search" /> <div class="cl"> </div> </form> <form name="form2" action="enviadias.php" method="post"> <div><br/> </div> </p> <p> </p> <div align="center"> <table width="794" border="0"> <tr> <th width="143" rowspan="5"> </th> <th width="153"> </th> <td colspan="8"> </td> </tr> <tr> <th> </th> <td colspan="8"> </td> </tr> <tr> <th> </th> <td width="30"> </td> <td width="91"> </td> <td width="75"> </td> <td colspan="5"> </td> </tr> <tr> <th>Dias:</th> <td><div align="left">L <input name="dia1" type="checkbox" id="dia1" value="Lunes" /> </div> <label for="dia8"></label></td> <td><div align="left"> M <input name="dia2" type="checkbox" id="dia2" value="Martes" /> </div> <label for="dia9"></label></td> <td><div align="left">M <input name="dia3" type="checkbox" id="dia3" value="Miercoles" /> </div> <label for="dia10"></label></td> <td width="67"><div align="left">J <input name="dia4" type="checkbox" id="dia4" value="Jueves" /> </div></td> <td width="54"><div align="left">V <input name="dia5" type="checkbox" id="dia5" value="Viernes" /> </div></td> <td width="52"><div align="left">S <input name="dia6" type="checkbox" id="dia6" value="Sabado" /> </div></td> <td width="44"><div align="left">D <input name="dia7" type="checkbox" id="dia7" value="Domingo" /> </div></td> <td width="43">L-V <div> <input onclick="ChequearAlgunos2(this);" type="checkbox" /> </div></td> </tr> <tr> <th> </th> <td colspan="8"> </td> </tr> </table> <table width="2" border="0"> </table> <p> </p> <p> </p> <p> <input type="submit" name="button2" id="button2" value="Enviar" onclick="this.disabled=true; this.value='Enviando...'; this.form.submit()" /> </p> </div> <p> </p> </form> </body> </html>
esa pagina selecciona 5 de 7 idas a la semana al presionar el ultimo checkbox
y tengo un problema cuando meti esa caja de busqueda, la cual como es otro formulario como que bloquea el otro o algo asi y ya no me deja seleccionar los dias automaticamente
CODIGO JAVASCRIPT PARA SELECCION DE 5 DE 7
Código Javascript:
Ver original
function ChequearAlgunos2(chkbox) { for (var i=0;i < document.forms["form2"].elements.length;i++) { var elemento = document.forms[0].elements[i]; if (elemento.id == "dia1") { elemento.checked = chkbox.checked } if (elemento.id == "dia2") { elemento.checked = chkbox.checked } if (elemento.id == "dia3") { elemento.checked = chkbox.checked } if (elemento.id == "dia4") { elemento.checked = chkbox.checked } if (elemento.id == "dia5") { elemento.checked = chkbox.checked } } }
que podria ser