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\")
Maybe you can use this piece of jQuery :
$("#report div:visible").each(function() { console.log($(this).attr('id')); });
Or this one :) ?
$("#report div:visible");