Assuming you have this html
<label>Label</label> <input type="checkbox" checked="checked"> test </input> <label>Label 2</label> <input type="checkbox" > test 2 </input> <label>Label 3</label> <input type="checkbox" > test 3</input>
you can find the shortcut using
$("input:checked").prev('label');
* use .next
if you have a label after the checkbox in your html
* use .parent
if you wrap the check box in the label element
source share