How do I target a specific input by its class name and value?
<input type="checkbox" class="something" value="1">
<input type="checkbox" class="something" value="2">
<input type="checkbox" class="something" value="3">
Target className something + value 2:
$('target classname = something, value = 2').prop('checked', true);