This is the html content from which I want to select all elements inside report having display block using jQuery $(\"#report:visible\") does not work for me.>
$(\"#report:visible\")
Use :visible in place of [style*="display:block"] as it will work in all browsers including IE. [style*="display:block"] will not work in IE.
:visible
[style*="display:block"]