Important Update: Some Community URL Redirects are Under Maintenance. Learn More. .

cancel
Showing results for 
Search instead for 
Did you mean: 

How to hide Questionnaire Count?

SaiKarthikIduri
Contributor II

Hi,

 

Looking for a Custom Object code that can hide the questionnaire count at the top of the form. Any idea?

 

Thanks,

Karthik.

1 ACCEPTED SOLUTION

Accepted Solutions

Ilya_Khen
Champion III
<script type="text/javascript">    
     Sys.Application.add_load(function() {   
          $(".CompletedDiv").hide();   
     }   
);   
</script>

View solution in original post

3 REPLIES 3

Ilya_Khen
Champion III
<script type="text/javascript">    
     Sys.Application.add_load(function() {   
          $(".CompletedDiv").hide();   
     }   
);   
</script>

Awesome! That works. Thanks Ilya

Anytime