In Qualtrics Table of Contents, I want to disable the checkmark selectively for a block only. | XM Community
Skip to main content

The checkmark icon is displayed in the Table of Contents when a block is completed. To disable it for all the blocks in the survey, I know I can use this script.





jQuery(".TocIcon").css("display","none");



But I want to selectively disable the checkmark icon for few blocks (based on their block flow ID). How do I proceed?

Hello @Karthik ,



Paste the below code in the header to hide check mark of specific flow ID



`<script>jQuery("#FL_2 span.TocIcon").hide();</script>`



Replace the flow ID with required, we can get the flow id by checking the "show flow id" option to the top right corner of survey flow.

Leave a Reply