java create simple filter option with checkbox on ul li items

Solutions on MaxInterview for java create simple filter option with checkbox on ul li items by the best coders in the world

showing results for - "java create simple filter option with checkbox on ul li items"
Romain
19 May 2016
1<ul class="filterSection">
2    <li>
3        <strong>Show:</strong>
4        <input checked="true" type="checkbox" value="food"/>
5        <label>Food</label>
6    </li>
7    <li>
8        <input checked="true" type="checkbox" value="place"/>
9        <label>Place</label>
10    </li>
11    <li>
12        <input checked="true" type="checkbox" value="musician"/>
13        <label>Musician</label>
14    </li>
15</ul>
16
similar questions