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\")
Why not just
$('#report div:visible');
if markup stays like that it will work. If not just add a class to the report entries like 'entry' then do
$('#report .entry:visible');