I want to check and sort elements that are hidden. Is it possible to find all elements with attribute display and value none?
display
none
Yes, you can use the cssfunction. The below will search all divs, but you can modify it for whatever elements you need
$('div').each(function(){ if ( $(this).css('display') == 'none') { //do something } });