I have this HTML code
<div class="friends_container">
<div class="friend">
<input type="checkbox" />
...
</div>
<div class="friend">
<input type="checkbox" />
...
</div>
<div class="friend">
<input type="checkbox" />
...
</div>
</div>
with select all/ unselect all link
<a id="selectall" href="#" >select all</a>
I tried to make it work, but I failed.. any help?
JsFiddle Here