I have the following code. When the checkbox is checked (which is hidden), when the label is pressed around the avatar, I want to add a class "selected" to the outer div (pop-friends-item).
<div class="pop-friends-item">
<label for="user_1" class="check_friend_item">
<input name="invited[]" type="checkbox" value="1" id="user_1" style="display:none;">
<img src="/avatar.jpg"> User 1</label>
</div>
<div class="pop-friends-item">
<label for="user_2" class="check_friend_item">
<input name="invited[]" type="checkbox" value="2" id="user_2" style="display:none;">
<img src="/avatar.jpg"> user 2</label>
</div>
I only got it to add the class to all the items, not just the one thats clicked.