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
How about something like this:
$(document).ready(function() { $("div:hidden").each(function() { if ($(this).css("display") == "none") { // do something } }); });