Solved
Return to Table of Contents after each block in the Table?
I have a TOC that has several blocks. Once users start with any block, it just seems to keep going through all the blocks. Is there any way to make users return to the TOC after they finish each block?
Thanks
Best answer by NiC
Hi @treimt,
We can surely do this.
1. So firstly we will need the TOC button.
2. Now if we want the respondents of last Question in a block to be transported to TOC page you can add the following code as shown in the image given below :
jQuery("#NextButton").unbind("click");
jQuery("#NextButton").click(function() {jQuery("#JumpButton").click() });
!
Important - This code should be added on one of the questions on the last page.
3. Now if we need hide the TOC button , you can add the custom CSS in the Look & Feel Section
This would be the custom CSS:
#JumpButton{
visibility:hidden;
}
View original