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\")
You could use:
$("[style='display: block;']");
but I wouldn't, I'd add a class as well to hook onto.