Search code examples
jquerycssjquery-selectorsdom-traversal

How to select checkboxes with opacity:0.5


How to select checkboxes with opacity: 0.5?

Selector :checkbox[style~='opacity: 0.5'] doesn't select them.


Solution

  • try this:

    $('input').filter(function() {
         return $(this).css('opacity') == '0.5';
    });