I have some check-boxes that have this form,
<label><input type="checkbox" name="Todos_dias" class="dayFilter">Todos</label>
Having the <label>
outside I can check the checkbox clicking over the word and not only clicking the box. Now what I want is hide the box, and just have the word.
How can I do this? I found this post but it doesn't work for me because if I use display:none
or visibility:hidden
the checkbox stops working.
Thank you very much