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

In Qualtrics Table of Contents, I want to disable the checkmark selectively for a block only.

  • 18 January 2019
  • 1 reply
  • 110 views

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?

icon

Best answer by Anonymous 23 January 2019, 04:32

View original

1 reply

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