Posts by Cristian Tales • 11 points
1 post
-
1
votes7
answers57425
viewsA: Check/Deselect Checkbox from a button
<script type="text/javascript"> function marcarTodos(marcardesmarcar){ $('.marcar').each(function () { this.checked = marcardesmarcar; }); } </script> <form> <input…