jquery select all br with display:none;
You could try:
$("br").filter(function() { return $(this).css("display") == "none" })
Another way to do this would be to use jQuery's attribute selector:
$("br[style$='display: none;']")
Using filter.
$("br").filter(function () {
return $(this).css("display") == "none";
});