Dear Michael,
Yes, you should be able to do that easily with jQuery.
The HTML is pretty straightforward on this page, with one question/summary section looking something like the following:
Code:
. . .
<H3 class="ms-standardheader, ms-vb"><B>22. Did you receive medical attention?</B></H3>
<TABLE border=0 cellSpacing=0 cellPadding=0><TBODY>
<TR><TD style="HEIGHT: 3.75pt"></TD></TR>
<TR>
<TD style="WIDTH: 1pt; PADDING-RIGHT: 17pt; FONT-SIZE: 0.01em"> </TD>
<TD style="PADDING-BOTTOM: 5px" class=ms-vb>Yes</TD></TR>
<TR>
<TD></TD>
<TD align=left>
<TABLE style="WIDTH: 375pt" border=0 cellSpacing=0 cellPadding=0><TBODY>
<TR>
<TD style="WIDTH: 5pt; FONT-SIZE: 0.01em" class=ms-surveyHBarLabel> </TD>
<TD style="WIDTH: 70pt" class=ms-SurveyHBarLabel><LABEL class=ms-hidden>Number Of Responses</LABEL>1 <LABEL class=ms-hidden>Percentage Of Responses</LABEL>(33%) </TD>
<TD style="HEIGHT: 11pt" class=ms-surveyHBarB>
<TABLE border=0 cellSpacing=0 cellPadding=0 width="33%" height="100%"><TBODY>
<TR><TD class=ms-surveyHBar> </TD></TR>
</TBODY></TABLE>
</TD>
</TR>
</TBODY></TABLE>
</TD>
</TR>
<TR><TD style="HEIGHT: 7.5pt"></TD></TR>
<TR>
<TD style="WIDTH: 1pt; PADDING-RIGHT: 17pt; FONT-SIZE: 0.01em"> </TD>
<TD style="PADDING-BOTTOM: 5px" class=ms-vb>No</TD></TR>
<TR>
<TD></TD>
<TD align=left>
<TABLE style="WIDTH: 375pt" border=0 cellSpacing=0 cellPadding=0><TBODY>
<TR>
<TD style="WIDTH: 5pt; FONT-SIZE: 0.01em" class=ms-surveyHBarLabel> </TD>
<TD style="WIDTH: 70pt" class=ms-SurveyHBarLabel><LABEL class=ms-hidden>Number Of Responses</LABEL>2 <LABEL class=ms-hidden>Percentage Of Responses</LABEL>(67%) </TD>
<TD style="HEIGHT: 11pt" class=ms-surveyHBarB>
<TABLE border=0 cellSpacing=0 cellPadding=0 width="66%" height="100%"><TBODY>
<TR><TD class=ms-surveyHBar> </TD></TR>
</TBODY></TABLE>
</TD>
</TR>
</TBODY></TABLE>
</TD>
</TR>
<TR>
<TD></TD>
<TD vAlign=top colSpan=3>
<HR class=ms-surveyHR SIZE=1>
<DIV class=ms-surveyTotal>Total: 3</DIV>
</TD>
</TR>
</TBODY></TABLE>
. . .
To hide the above information, I would
add a CEWP to the Graphical Summary page and include the following jQuery:
Code:
$(document).ready( function() {
$('h3:contains("22. Did you receive medical attention?")').hide().next("table").hide();
})
Caveat: If you remove this one from the midst of your survey, the other numbers will stay the same and leave a gap where 22 should be. You could add a couple of more lines to change it all to an ordered list, so that it would renumber itself.
Blessings,
Jim Bob