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
$("element").filter(function() { return $(this).css("display") == "none" });