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.>
This will select the direct children of #report that are visible. Without the space you're selecting #report itself if it's visible. (Without the > it'd target also the inputs.)