Hello,
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:
I appreciate any help. I am attaching a screenshot of how the screen currently looks.
Thank you,
Rhonda
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:
Code:
<script type=text/javascript> //hide created document.getElementById("overview03").innerHTML=" "; document.getElementById("overview04").innerHTML=" "; </script>
Thank you,
Rhonda
Comment