How to select checkboxes with opacity: 0.5?
opacity: 0.5
Selector :checkbox[style~='opacity: 0.5'] doesn't select them.
:checkbox[style~='opacity: 0.5']
try this:
$('input').filter(function() { return $(this).css('opacity') == '0.5'; });