0
I have a list of ckeckbox where each one is a neighborhood, so I wanted that when typing the name of the neighborhood, he stares and leaving only the neighborhoods that contain what is typed, just like this (click filter by neighborhood):
My checkbox is like this:
<div>
<div class="span3" style="float:left;padding-right:10px;margin-left:0px;">
<input type="checkbox" value="43" name="bairro[]" id="bairro0"> Aclimação
</div>
<div class="span3" style="float:left;padding-right:10px;margin-left:0px;">
<input type="checkbox" value="2" name="bairro[]" id="bairro1"> Alto da Boa Vista
</div>
</div>
worked, only gave a problem, the class span3, has the width in 23% there when I start the search, it kind of squeezes the neighborhoods: http://www.vnc.com.br/search
– Leandro Marzullo
@Leandromarzullo, blz mano, only improve the same css.
– N. Dias
it worked, it had a float:left unnecessarily and now it’s okay, Fight!!!!
– Leandro Marzullo