How do I select an element based on its css?
I need to select a br with inline style display:none. This is not the same thing as br:hidden, because that selects elem
$("br").filter(function() { return $(this).css("display") == "none"; })
Works like a charm.