First, I am a SharePoint beginner. I am creating a SharePoint Survey and attempting to hide the values for Created Date and Number of Responses on the Overview. I researched and found JavaScript to hide the label for both, but I do not know how to hide the actual values.
Here is the code I used to hide the labels that I put into a script editor web part:
Expand|Select|Wrap|Line Numbers
- <script type=text/javascript>
- //hide created
- document.getElementById("overview03").innerHTML=" ";
- document.getElementById("overview04").innerHTML=" ";
- </script>
Thank you,
Rhonda